Skip to content

Commit

Permalink
CI: add missing boost in linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
IonAgorria committed Oct 7, 2024
1 parent ac97963 commit 1cdc547
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/linux_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
run: |
chmod a+x ./docker/linux/prepare_pkgs
./docker/linux/prepare_pkgs
- name: prepare boost
run: |
chmod a+x ./docker/prepare_boost
./docker/prepare_boost
- name: build ffmpeg
run: |
chmod a+x ./docker/linux/prepare_ffmpeg
Expand Down Expand Up @@ -84,10 +88,14 @@ jobs:
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
- name: create build dir
run: mkdir build
- name: prepare boost
run: |
chmod a+x ./docker/prepare_boost
./docker/prepare_boost
- name: configure
run: cmake .. -G Ninja \
-DCMAKE_BUILD_TYPE=${{matrix.env.build_type}} \
-DOPTION_DEBUG_ASSERT=ON \
run: cmake .. -G Ninja
-DCMAKE_BUILD_TYPE=${{matrix.env.build_type}}
-DOPTION_DEBUG_ASSERT=ON
${{matrix.env.cmake}}
working-directory: build
- name: Scripts check
Expand Down

0 comments on commit 1cdc547

Please sign in to comment.