mirror of
https://github.com/KhronosGroup/Vulkan-Headers
synced 2024-11-21 14:29:07 -07:00
ci: Fix invalid usage of GITHUB_WORKSPACE
This commit is contained in:
parent
9b9fd871b0
commit
0c34d02861
1 changed files with 2 additions and 2 deletions
4
.github/workflows/linux.yml
vendored
4
.github/workflows/linux.yml
vendored
|
@ -31,9 +31,9 @@ jobs:
|
|||
- name: Configure Vulkan-Headers
|
||||
run: cmake -S . -B build -G "Ninja"
|
||||
- name: Install Vulkan-Headers
|
||||
run: cmake --install build --prefix ${GITHUB_WORKSPACE}/build/install
|
||||
run: cmake --install build --prefix ${{ github.workspace }}/build/install
|
||||
- name: Test Vulkan-Headers find_package support
|
||||
run: cmake -S tests/find_package -B build/tests/find_package -D CMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/build/install
|
||||
run: cmake -S tests/find_package -B build/tests/find_package -D CMAKE_PREFIX_PATH=${{ github.workspace }}/build/install
|
||||
|
||||
ubuntu-cmake-tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in a new issue