aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLiam Mitchell <[email protected]>2025-07-29 23:34:40 +0000
committerLiam Mitchell <[email protected]>2025-07-29 23:34:40 +0000
commitc9f0ebda018b3196d90c2e07affc35722c03f2c4 (patch)
tree58953de9286e96a9bfabe1eec2e7d0c0c877766b /.github/workflows
parentMerge branch 'main' into de/zen-service-command (diff)
downloadzen-c9f0ebda018b3196d90c2e07affc35722c03f2c4.tar.xz
zen-c9f0ebda018b3196d90c2e07affc35722c03f2c4.zip
Install libc++-dev during CI in order to build libsystemd properly
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/validate.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml
index a35d1eeed..81742fd94 100644
--- a/.github/workflows/validate.yml
+++ b/.github/workflows/validate.yml
@@ -152,6 +152,11 @@ jobs:
./bootstrap-vcpkg.sh
cd ..
+ - name: Installing libc++ # This is not used for zen builds, but gperf/meson are used by some dependencies and they require it
+ run: |
+ sudo apt-get update
+ sudo apt-get -y install libc++-dev
+
- name: Config
run: |
./scripts/ue_build_linux/ue_build.sh ./.tmp-ue-toolchain xmake config -v -y -m ${{ matrix.config }} --arch=${{ matrix.arch }}