diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-02-16 22:15:31 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-02-17 20:27:35 +0100 |
commit | 7e02c20c650c378729ab4999933f556c4bfb25c6 (patch) | |
tree | 0049eb496d1751b46b3068fd1b1bf45783310c27 /.github/workflows/pr-ci.yml | |
parent | 55f696228e5728cd89008e0af1ca5178bd4b9fb6 (diff) | |
download | libfuse-7e02c20c650c378729ab4999933f556c4bfb25c6.tar.gz |
ci-build test: Add a 32-bit compilation test
That was missing so far.
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
Diffstat (limited to '.github/workflows/pr-ci.yml')
-rw-r--r-- | .github/workflows/pr-ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/pr-ci.yml b/.github/workflows/pr-ci.yml index bec6166..ccaaf72 100644 --- a/.github/workflows/pr-ci.yml +++ b/.github/workflows/pr-ci.yml @@ -26,7 +26,12 @@ jobs: steps: - name: Install dependencies (Ubuntu) if: runner.os == 'Linux' - run: sudo apt-get update && sudo apt-get install -y clang doxygen gcc gcc-10 gcc-9 valgrind + run: | + sudo dpkg --add-architecture i386 + sudo apt-get update + sudo apt-get install -y clang doxygen gcc gcc-10 gcc-9 valgrind \ + gcc-multilib g++-multilib libc6-dev-i386 \ + libpcap0.8-dev:i386 libudev-dev:i386 pkg-config:i386 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - uses: actions/setup-python@v5 with: |