-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop'
- Loading branch information
Showing
23 changed files
with
864 additions
and
366 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,55 @@ | ||
name: MacOS | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
branches: [ master ] | ||
|
||
env: | ||
BUILD_TYPE: Release | ||
CMAKE_BUILD_DIR: ${{ github.workspace }}/build/ | ||
|
||
jobs: | ||
build: | ||
name: Deploy on MacOS | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Install deps | ||
run: | | ||
brew update | ||
brew install curl | ||
- name: Configure VKAPI Library CMake | ||
run: cmake -B ${{ env.CMAKE_BUILD_DIR }} -DBUILD_EXAMPLES=OFF -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
|
||
- name: Build VKAPI Library | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --config ${{ env.BUILD_TYPE }} | ||
|
||
- name: Install VKAPI Library | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --target install --config ${{ env.BUILD_TYPE }} | ||
|
||
# Configure, Build and Install WE - With Examples | ||
- name: Configure VKAPI Library CMake WE | ||
run: cmake -B ${{ env.CMAKE_BUILD_DIR }} -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
|
||
- name: Build VKAPI Library WE | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --config ${{ env.BUILD_TYPE }} | ||
|
||
- name: Install VKAPI Library WE | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --target install --config ${{ env.BUILD_TYPE }} | ||
|
||
- name: Test | ||
working-directory: ${{ env.CMAKE_BUILD_DIR }} | ||
# Execute tests defined by the CMake configuration. | ||
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | ||
run: ctest -C ${{ env.BUILD_TYPE }} | ||
|
||
|
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,56 @@ | ||
name: Ubuntu | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
branches: [ master ] | ||
|
||
env: | ||
BUILD_TYPE: Release | ||
CMAKE_BUILD_DIR: ${{ github.workspace }}/build/ | ||
|
||
jobs: | ||
build: | ||
name: Deploy on Ubuntu | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Install deps | ||
run: | | ||
sudo apt update | ||
sudo apt upgrade | ||
sudo apt install curl | ||
sudo apt-get install libcurl4-openssl-dev | ||
- name: Configure VKAPI Library CMake | ||
run: cmake -B ${{ env.CMAKE_BUILD_DIR }} -DBUILD_EXAMPLES=OFF -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
|
||
- name: Build VKAPI Library | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --config ${{ env.BUILD_TYPE }} | ||
|
||
- name: Install VKAPI Library | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --target install --config ${{ env.BUILD_TYPE }} | ||
|
||
# Configure, Build and Install WE - With Examples | ||
- name: Configure VKAPI Library CMake WE | ||
run: cmake -B ${{ env.CMAKE_BUILD_DIR }} -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
|
||
- name: Build VKAPI Library WE | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --config ${{ env.BUILD_TYPE }} | ||
|
||
- name: Install VKAPI Library WE | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --target install --config ${{ env.BUILD_TYPE }} | ||
|
||
- name: Test | ||
working-directory: ${{ env.CMAKE_BUILD_DIR }} | ||
# Execute tests defined by the CMake configuration. | ||
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | ||
run: ctest -C ${{ env.BUILD_TYPE }} | ||
|
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,56 @@ | ||
name: Windows | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
branches: [ master ] | ||
|
||
env: | ||
BUILD_TYPE: Release | ||
CMAKE_BUILD_DIR: ${{ github.workspace }}/build | ||
|
||
jobs: | ||
build: | ||
name: Deploy on Windows | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Install deps | ||
uses: crazy-max/ghaction-chocolatey@v1 | ||
with: | ||
args: install curl | ||
|
||
- name: Configure VKAPI Library CMake | ||
run: | | ||
cd ${{ github.workspace }} | ||
mkdir build | ||
cmake -B ${{ env.CMAKE_BUILD_DIR }} -DBUILD_EXAMPLES=OFF -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
- name: Build VKAPI Library | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --config ${{ env.BUILD_TYPE }} | ||
|
||
- name: Install VKAPI Library | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --target install --config ${{ env.BUILD_TYPE }} | ||
|
||
# Configure, Build and Install WE - With Examples | ||
- name: Configure VKAPI Library CMake WE | ||
run: cmake -B ${{ env.CMAKE_BUILD_DIR }} -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
|
||
- name: Build VKAPI Library WE | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --config ${{ env.BUILD_TYPE }} | ||
|
||
- name: Install VKAPI Library WE | ||
run: cmake --build ${{ env.CMAKE_BUILD_DIR }} --target install --config ${{ env.BUILD_TYPE }} | ||
|
||
- name: Test | ||
working-directory: ${{ env.CMAKE_BUILD_DIR }} | ||
# Execute tests defined by the CMake configuration. | ||
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | ||
run: ctest -C ${{ env.BUILD_TYPE }} |
Empty file.
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
Oops, something went wrong.