Skip to content

Commit

Permalink
fix: fix broken release pipeline for building aws crate dep
Browse files Browse the repository at this point in the history
  • Loading branch information
dutterbutter committed Sep 27, 2024
1 parent 4841346 commit 73f9725
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ jobs:
# Builds
# ==============================

- name: Install cross v0.2.5 from source
- name: Install cross v0.2.4 from source
env:
RUSTFLAGS: ""
run: |
cargo install cross --git https://github.com/cross-rs/cross --tag v0.2.5
cargo install cross --git https://github.com/cross-rs/cross --tag v0.2.4
- name: Build era-test-node for ${{ matrix.arch }}
run: |
Expand Down
5 changes: 4 additions & 1 deletion Cross.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ pre-build = [
"export DEBIAN_FRONTEND=noninteractive",
"export TZ=Etc/UTC",
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt update -q && apt upgrade -yq && apt install --assume-yes --no-install-recommends libclang-10-dev clang-10 cmake build-essential pkg-config libssl-dev:$CROSS_DEB_ARCH libsasl2-dev llvm-dev gnutls-bin"
"apt update -q && apt upgrade -yq && apt install --assume-yes --no-install-recommends libclang-10-dev clang-10 cmake build-essential pkg-config libssl-dev:$CROSS_DEB_ARCH libsasl2-dev llvm-dev gnutls-bin",
"apt install -y gcc-10 g++-10",
"update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10",
"update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10"
]

0 comments on commit 73f9725

Please sign in to comment.