diff options
author | Juan Ramos <[email protected]> | 2023-01-19 09:57:09 -0700 |
---|---|---|
committer | Juan Ramos <[email protected]> | 2023-01-19 10:02:09 -0700 |
commit | 1fa844dba2f0168d0b35ae1317357000938be5da (patch) | |
tree | 4435dc9ac6f1e6b474474d1e3b5a8d510e414b05 /.github | |
parent | 6f62a95edbfee23f5d375cae1d4ad2fd678f92ba (diff) | |
download | Vulkan-Headers-1fa844dba2f0168d0b35ae1317357000938be5da.tar.gz Vulkan-Headers-1fa844dba2f0168d0b35ae1317357000938be5da.zip |
ci: Don't re-install CMake
Already provided by GitHub actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 36c70cb..ac1555f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -25,10 +25,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Install build dependencies - run: | - sudo apt-get -qq update - sudo apt-get install -y cmake - name: Configure Vulkan-Headers run: cmake -S . -B build - name: Install Vulkan-Headers @@ -40,10 +36,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Install build dependencies - run: | - sudo apt-get -qq update - sudo apt-get install -y cmake - name: Configure Vulkan-Headers run: cmake -S . -B build -D BUILD_TESTS=ON - name: Build Vulkan-Headers Tests |