Skip to content

Commit b25ecff

Browse files
Testing CI (1)
1 parent d275cb1 commit b25ecff

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

.github/workflows/linux.yaml

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,34 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
cxx: [g++-12, clang++-15]
15-
build_type: [Debug, Release]
14+
cxx: g++-12
15+
build_type: Debug
16+
#cxx: [g++-12, clang++-15]
17+
#build_type: [Debug, Release]
1618
include:
1719
- cxx: g++-12
1820
install: sudo apt install g++-12
19-
- cxx: clang++-15
20-
cxxflags: -stdlib=libc++
21-
install: sudo apt install clang-15 libc++-15-dev libc++abi-15-dev
21+
#- cxx: clang++-15
22+
# cxxflags: -stdlib=libc++
23+
# install: sudo apt install clang-15 libc++-15-dev libc++abi-15-dev
2224

2325
steps:
2426
- uses: actions/checkout@v4
2527

26-
- name: Prepare Vulkan SDK
27-
uses: humbletim/[email protected]
28-
with:
29-
version: 1.3.290.0
30-
cache: true
31-
3228
- name: Create Build Environment
3329
run: |
3430
sudo apt update
3531
${{matrix.install}}
3632
cmake -E make_directory ${{runner.workspace}}/build
3733
34+
- name: Prepare Vulkan SDK
35+
shell: bash
36+
run: |
37+
curl -LS -o vulkansdk.tar.xz https://sdk.lunarg.com/sdk/download/1.4.309.0/linux/vulkansdk-linux-x86_64-1.4.309.0.tar.xz
38+
mkdir -p vulkan_sdk
39+
tar xf vulkansdk.tar.xz -C "vulkan_sdk"
40+
rm -rf vulkansdk.tar.xz
41+
3842
- name: Configure
3943
working-directory: ${{runner.workspace}}/build
4044
env:

0 commit comments

Comments
 (0)