Skip to content

Commit 17b8a9e

Browse files
committed
Added missing deps for ubuntu
1 parent 1c156c4 commit 17b8a9e

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ on:
44
pull_request:
55
types: [synchronize, opened, reopened, ready_for_review]
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
711
jobs:
8-
build-windows:
12+
windows:
913
runs-on: windows-latest
1014
steps:
1115
- name: Checkout code
@@ -26,7 +30,7 @@ jobs:
2630
- name: Build
2731
run: cmake --build build --config Release
2832

29-
build-linux:
33+
ubuntu:
3034
runs-on: ubuntu-latest
3135
steps:
3236
- name: Checkout code
@@ -41,6 +45,16 @@ jobs:
4145
- name: Set up CMake
4246
uses: jwlawson/actions-setup-cmake@v2
4347

48+
- name: install xcb dep
49+
run: |
50+
sudo apt-get update
51+
sudo apt-get install libxcb1-dev -y
52+
53+
- name: install GL libraries
54+
run: |
55+
sudo apt-get update
56+
sudo apt-get install libgl1-mesa-dev libegl1-mesa-dev -y
57+
4458
- name: Configure
4559
run: cmake -S . -B build -G Ninja
4660

extern/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ add_subdirectory(SPIRV-Cross)
110110

111111
set_target_properties(
112112
assimp
113-
UpdateAssimpLibsDebugSymbolsAndDLLs
114113
zlibstatic
115114
glslang
116115
GenericCodeGen

0 commit comments

Comments
 (0)