Skip to content

Commit

Permalink
Problem: CI fails due to package conflicts in Jammy
Browse files Browse the repository at this point in the history
Solution: explicitly install libunwind-dev otherwise apt will refuse to pull it in and
will fail to install libzmq3-dev

https://bugs.launchpad.net/ubuntu/+source/llvm-toolchain-14/+bug/1989124
  • Loading branch information
bluca committed Sep 30, 2023
1 parent 0e352ec commit c58dc7c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:
BUILD_TYPE: default
DRAFT: enabled
CLANG_FORMAT: clang-format-11
PACKAGES: automake autoconf clang-format-11 git libzmq3-dev libczmq-dev asciidoc xmlto
PACKAGES: automake autoconf clang-format-11 git libzmq3-dev libunwind-dev libczmq-dev asciidoc xmlto
- os: ubuntu-latest
BUILD_TYPE: default
DRAFT: disabled
CLANG_FORMAT: clang-format-11
PACKAGES: automake autoconf clang-format-11 git libzmq3-dev libczmq-dev
PACKAGES: automake autoconf clang-format-11 git libzmq3-dev libunwind-dev libczmq-dev
- os: ubuntu-latest
BUILD_TYPE: valgrind
DRAFT: enabled
PACKAGES: automake autoconf valgrind git libzmq3-dev libczmq-dev
PACKAGES: automake autoconf valgrind git libzmq3-dev libunwind-dev libczmq-dev
- os: ubuntu-latest
BUILD_TYPE: cmake
DRAFT: enabled
PACKAGES: cmake git libzmq3-dev libczmq-dev
PACKAGES: cmake git libzmq3-dev libunwind-dev libczmq-dev
- os: macos-latest
BUILD_TYPE: default
PACKAGES: automake autoconf zeromq
Expand All @@ -49,7 +49,7 @@ jobs:
BUILD_TYPE: cmake
DO_CLANG_FORMAT_CHECK: 1
CLANG_FORMAT: clang-format-11
PACKAGES: cmake clang-format-11 git libzmq3-dev libczmq-dev
PACKAGES: cmake clang-format-11 git libzmq3-dev libunwind-dev libczmq-dev
env:
# Set CI_TIME: true to enable build-step profiling
# Set CI_TRACE: true to enable shell script tracing
Expand Down

0 comments on commit c58dc7c

Please sign in to comment.