Skip to content

Commit 4b1d4d9

Browse files
committed
CI: add missing boost in linux build
1 parent ac97963 commit 4b1d4d9

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/linux_build.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
run: |
4040
chmod a+x ./docker/linux/prepare_pkgs
4141
./docker/linux/prepare_pkgs
42+
- name: prepare boost
43+
run: |
44+
chmod a+x ./docker/prepare_boost
45+
./docker/prepare_boost
4246
- name: build ffmpeg
4347
run: |
4448
chmod a+x ./docker/linux/prepare_ffmpeg
@@ -84,10 +88,14 @@ jobs:
8488
run: sudo apt-get install cmake meson libsdl2-dev libsdl2-image-dev libsdl2-net-dev libsdl2-mixer-dev libboost-dev libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev zlib1g-dev libvulkan-dev glslang-tools lld
8589
- name: create build dir
8690
run: mkdir build
91+
- name: prepare boost
92+
run: |
93+
chmod a+x ./docker/prepare_boost
94+
sudo ./docker/prepare_boost
8795
- name: configure
88-
run: cmake .. -G Ninja \
89-
-DCMAKE_BUILD_TYPE=${{matrix.env.build_type}} \
90-
-DOPTION_DEBUG_ASSERT=ON \
96+
run: cmake .. -G Ninja
97+
-DCMAKE_BUILD_TYPE=${{matrix.env.build_type}}
98+
-DOPTION_DEBUG_ASSERT=ON
9199
${{matrix.env.cmake}}
92100
working-directory: build
93101
- name: Scripts check

0 commit comments

Comments
 (0)