Skip to content

Commit

Permalink
fix: release flow (#1231)
Browse files Browse the repository at this point in the history
* try fixing release flow

* add libssl for aarch64

* build aarch64-unknown-linux-gnu

* add correct installation of open ssl

* uncomment
  • Loading branch information
greged93 authored Jun 24, 2024
1 parent 4f35741 commit e2e49d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/kakarot_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ jobs:
name: artifacts
path: ./.kakarot
- uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.target }}
toolchain: 1.76.0
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
3 changes: 2 additions & 1 deletion Cross.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[build]
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
# rust-bindgen dependencies: llvm-dev libclang-dev (>= 5.0) clang (>= 5.0)
"apt-get update && apt-get install -y --no-install-recommends llvm-dev libclang-6.0-dev clang-6.0",
"apt-get update && apt-get install -y --no-install-recommends llvm-dev libclang-6.0-dev clang-6.0 libssl-dev:$CROSS_DEB_ARCH",
]

0 comments on commit e2e49d8

Please sign in to comment.