diff options
| author | Liam Mitchell <[email protected]> | 2025-07-29 23:34:40 +0000 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2025-07-29 23:34:40 +0000 |
| commit | c9f0ebda018b3196d90c2e07affc35722c03f2c4 (patch) | |
| tree | 58953de9286e96a9bfabe1eec2e7d0c0c877766b | |
| parent | Merge branch 'main' into de/zen-service-command (diff) | |
| download | zen-c9f0ebda018b3196d90c2e07affc35722c03f2c4.tar.xz zen-c9f0ebda018b3196d90c2e07affc35722c03f2c4.zip | |
Install libc++-dev during CI in order to build libsystemd properly
| -rw-r--r-- | .github/workflows/validate.yml | 5 |
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 }} |