diff options
author | Juan Ramos <[email protected]> | 2023-02-22 11:39:08 -0700 |
---|---|---|
committer | Juan Ramos <[email protected]> | 2023-02-22 11:49:55 -0700 |
commit | 115820a6e5ff35881046a8e3920c2514c73e4a63 (patch) | |
tree | 707c6f989db155fe6be79d86eadaba5123d38787 /.github | |
parent | 6c683158492d6b2d35fccab6dae784fef87eaf99 (diff) | |
download | Vulkan-Headers-115820a6e5ff35881046a8e3920c2514c73e4a63.tar.gz Vulkan-Headers-115820a6e5ff35881046a8e3920c2514c73e4a63.zip |
cmake: Update min to 3.15
- Removes conditional 3.15 logic
- Guarantees usage of --install/--loglevel
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 0a161f5..900a2e8 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v3 - uses: lukka/get-cmake@latest with: - cmakeVersion: 3.15.0 + cmakeVersion: 3.17.0 - name: Configure Vulkan-Headers run: cmake -S . -B build -G "Ninja" - name: Install Vulkan-Headers @@ -53,6 +53,8 @@ jobs: - uses: actions/checkout@v3 - uses: lukka/get-cmake@latest with: - cmakeVersion: 3.14.0 + cmakeVersion: 3.15.0 - name: Configure Vulkan-Headers - run: cmake -S . -B build/ -G "Ninja" + run: cmake -S . -B build/ -G "Ninja" --loglevel=DEBUG + - name: Install Vulkan-Headers + run: cmake --install build/ --prefix build/install |