mirror of
https://github.com/KhronosGroup/Vulkan-Headers
synced 2024-11-21 14:29:07 -07:00
ci: Cleanup linux.yml
This commit is contained in:
parent
bbed346ee4
commit
08bfe2e226
1 changed files with 4 additions and 4 deletions
8
.github/workflows/linux.yml
vendored
8
.github/workflows/linux.yml
vendored
|
@ -21,8 +21,6 @@ on:
|
|||
- main
|
||||
|
||||
jobs:
|
||||
# Configure/Install the headers.
|
||||
# No need to build since it's a header only library.
|
||||
ubuntu-cmake-install:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
@ -38,7 +36,6 @@ jobs:
|
|||
- 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
|
||||
|
||||
# Enable testing
|
||||
ubuntu-cmake-tests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
@ -61,5 +58,8 @@ jobs:
|
|||
cmakeVersion: 3.10.2
|
||||
- name: CMake Version
|
||||
run: cmake --version
|
||||
- name: Create build directory
|
||||
run: mkdir build/
|
||||
- name: Configure Vulkan-Headers
|
||||
run: mkdir build/ && cd build/ && cmake ${GITHUB_WORKSPACE}
|
||||
working-directory: ./build
|
||||
run: cmake ../
|
||||
|
|
Loading…
Reference in a new issue