Skip to content

Commit

Permalink
ci: ignore linux-libc-dev:$arch dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kxxt committed Oct 15, 2024
1 parent 680f5d3 commit d0f3cb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ jobs:
sudo apt-get update -y
sudo apt-get install -y build-essential autopoint gettext libelf-dev zlib1g-dev \
libelf-dev:${{ matrix.os-arch }} zlib1g-dev:${{ matrix.os-arch }} \
libseccomp2:${{ matrix.os-arch }} libseccomp-dev:${{ matrix.os-arch }}
libseccomp2:${{ matrix.os-arch }} libseccomp-dev:${{ matrix.os-arch }} \
linux-libc-dev:${{ matrix.os-arch }}-
# - name: Prepare libelf and zlib
# run: 3rdparty/prepare-native-dependencies.sh ${{ matrix.arch }}
- name: Cache Cargo dependencies
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ jobs:
sudo apt install -y {binutils,gcc}-{aarch64,riscv64}-linux-gnu \
build-essential autopoint gettext libelf-dev zlib1g-dev \
libelf-dev:${{ matrix.os-arch }} zlib1g-dev:${{ matrix.os-arch }} \
libseccomp2:${{ matrix.os-arch }} libseccomp-dev:${{ matrix.os-arch }}
libseccomp2:${{ matrix.os-arch }} libseccomp-dev:${{ matrix.os-arch }} \
linux-libc-dev:${{ matrix.os-arch }}-
# - name: Prepare libelf and zlib
# run: 3rdparty/prepare-native-dependencies.sh ${{ matrix.arch }}
- name: Publish to crates.io
Expand Down

0 comments on commit d0f3cb5

Please sign in to comment.