-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
284 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Linux Plugin Lighting | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'Plugins/Lighting/**' | ||
|
||
jobs: | ||
build_Linux_Plugin_Lighting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: master | ||
- name: checkout submodules | ||
run : git submodule update --init --recursive | ||
- name: Prepare Vulkan SDK | ||
uses: humbletim/setup-vulkan-sdk@v1.2.0 | ||
with: | ||
vulkan-query-version: 1.3.224.1 | ||
vulkan-components: Vulkan-Headers, Vulkan-Loader | ||
vulkan-use-cache: true | ||
- name: Install Requirement for Glfw3 | ||
run : sudo apt-get update && sudo apt-get install libgl1-mesa-dev libx11-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev libasound2-dev libomp-dev | ||
- name: configure | ||
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DPLUGIN_ENABLE_LIGHTING=ON | ||
- name: build | ||
run: cmake --build build --config Release -t Lighting | ||
- name: upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Plugin Lighting | ||
path: "bin/plugins/*Lighting*" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Linux Plugin PostProcessing | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'Plugins/PostProcessing/**' | ||
|
||
jobs: | ||
build_Linux_Plugin_Core: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: master | ||
- name: checkout submodules | ||
run : git submodule update --init --recursive | ||
- name: Prepare Vulkan SDK | ||
uses: humbletim/setup-vulkan-sdk@v1.2.0 | ||
with: | ||
vulkan-query-version: 1.3.224.1 | ||
vulkan-components: Vulkan-Headers, Vulkan-Loader | ||
vulkan-use-cache: true | ||
- name: Install Requirement for Glfw3 | ||
run : sudo apt-get update && sudo apt-get install libgl1-mesa-dev libx11-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev libasound2-dev libomp-dev | ||
- name: configure | ||
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DPLUGIN_ENABLE_POST_PROCESSING=ON | ||
- name: build | ||
run: cmake --build build --config Release -t PostProcessing | ||
- name: upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Plugin PostProcessing | ||
path: "bin/plugins/*PostProcessing*" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Linux Plugin Simulation | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'Plugins/Simulation/**' | ||
|
||
jobs: | ||
build_Linux_Plugin_Simulation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: master | ||
- name: checkout submodules | ||
run : git submodule update --init --recursive | ||
- name: Prepare Vulkan SDK | ||
uses: humbletim/setup-vulkan-sdk@v1.2.0 | ||
with: | ||
vulkan-query-version: 1.3.224.1 | ||
vulkan-components: Vulkan-Headers, Vulkan-Loader | ||
vulkan-use-cache: true | ||
- name: Install Requirement for Glfw3 | ||
run : sudo apt-get update && sudo apt-get install libgl1-mesa-dev libx11-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev libasound2-dev libomp-dev | ||
- name: configure | ||
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DPLUGIN_ENABLE_SIMULATION=ON | ||
- name: build | ||
run: cmake --build build --config Release -t Simulation | ||
- name: upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Plugin Simulation | ||
path: "bin/plugins/*Simulation*" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.