Skip to content

Commit 7cfc0ec

Browse files
committed
Test1
1 parent 4a177ed commit 7cfc0ec

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
${{matrix.install}}
3434
cmake -E make_directory ${{runner.workspace}}/build
3535
36-
- name: Check Vulkan SDK Cache
36+
- name: Check for Vulkan SDK Cache
3737
id: cache-vulkan
3838
uses: actions/cache@v4
3939
with:

.github/workflows/static_code_analysis.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
id: set-version
1717
run: echo "VULKAN_SDK_VERSION=1.3.283.0" >> $GITHUB_ENV
1818

19-
- name: Check Vulkan SDK Cache
19+
- name: Install system dependencies
20+
run: |
21+
sudo apt update
22+
sudo apt install -y clang-15 clang-tidy-15 cmake parallel libc++-15-dev libc++abi-15-dev
23+
24+
- name: Check for Vulkan SDK Cache
2025
id: cache-vulkan
2126
uses: actions/cache@v4
2227
with:
2328
path: vulkan_sdk
2429
key: vulkan-sdk-${{env.VULKAN_SDK_VERSION}}
2530

26-
- name: Install system dependencies
27-
run: |
28-
sudo apt update
29-
sudo apt install -y clang-15 clang-tidy-15 cmake parallel libc++-15-dev libc++abi-15-dev
30-
3131
- name: Download Vulkan SDK
3232
if: steps.cache-vulkan.outputs.cache-hit != 'true'
3333
run: |

.github/workflows/windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v4
3737

38-
- name: Check Vulkan SDK Cache
38+
- name: Check for Vulkan SDK Cache
3939
id: cache-vulkan
4040
uses: actions/cache@v4
4141
with:

0 commit comments

Comments
 (0)