Skip to content

Commit 6cb007a

Browse files
committed
Fix issue in build
1 parent 916f42f commit 6cb007a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build-linux.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
submodules: recursive
2020
- name: Configure Ubuntu Libraries
2121
run: sudo apt-get install -y libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev mesa-common-dev
22+
- name: Install Clang 19
23+
uses: egor-tensin/setup-clang@v1
24+
with:
25+
version: 19
26+
platform: x64
2227
- name: Install Premake
2328
uses: Jarod42/install-premake5@v4
2429
with:
2530
ref: master
26-
- name: Generate Project
31+
- name: Generate Project Files
2732
run: premake5 gmake
28-
- name: Configure Clang
29-
uses: egor-tensin/setup-clang@v1
30-
with:
31-
version: 19
32-
platform: x64
3333
- name: Build
34-
run: make config=${{ matrix.config }} -j$(nproc)
34+
run: make config=${{ matrix.config }}_x64 -j$(nproc)

0 commit comments

Comments
 (0)