update vkh with cstdio include #415
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
name: CMake | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
Win_jorb: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Vulkan SDK | |
uses: humbletim/[email protected] | |
with: | |
vulkan-query-version: 1.3.204.0 | |
vulkan-components: Vulkan-Headers, Vulkan-Loader | |
vulkan-use-cache: true | |
- name: configure | |
run: cmake -G "Visual Studio 16 2019" . -DCMAKE_SYSTEM_VERSION="10.0.18362.0" -DVKVG_RECORDING=false -DVKVG_SVG=false -DGIT_SUBMODULE=true | |
- name: build | |
run: cmake --build . | |
linux_jorb: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
build_config: ['Release'] | |
defaults: | |
run: | |
shell: bash | |
env: | |
VULKAN_SDK: ${{ github.workspace }}/VulkanSDK/x86_64 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
repository: 'krOoze/vk_sdk_lite' | |
path: 'VulkanSDK' | |
ref: linux | |
persist-credentials: false | |
- run: echo "${{ env.VULKAN_SDK }}/bin" >> $GITHUB_PATH | |
- run: sudo apt update && sudo apt install xorg-dev | |
- uses: actions/checkout@v2 | |
with: | |
path: 'source' | |
persist-credentials: false | |
- run: mkdir -p source/build | |
- run: cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_config }} -G "Unix Makefiles" .. -DVKVG_RECORDING=false -DVKVG_SVG=false -DGIT_SUBMODULE=true | |
working-directory: source/build | |
- run: cmake --build . --config ${{ matrix.build_config }} | |
working-directory: source/build | |
mac_jorb: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
build_config: ['Release'] | |
defaults: | |
run: | |
shell: bash | |
env: | |
VULKAN_SDK: ${{ github.workspace }}/VulkanSDK/macOS | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
repository: 'krOoze/vk_sdk_lite' | |
path: 'VulkanSDK' | |
ref: macos | |
persist-credentials: false | |
- run: echo "${{ env.VULKAN_SDK }}/bin" >> $GITHUB_PATH | |
- uses: actions/checkout@v2 | |
with: | |
path: 'source' | |
persist-credentials: false | |
- run: mkdir -p source/build | |
- run: cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_config }} .. -DVKVG_RECORDING=false -DVKVG_SVG=false -DGIT_SUBMODULE=true | |
working-directory: source/build | |
- run: cmake --build . --config ${{ matrix.build_config }} | |
working-directory: source/build |