From 17ed4c4285a736a27b4c2ad49f85e7255094903c Mon Sep 17 00:00:00 2001 From: sandhilt <6170125+sandhilt@users.noreply.github.com> Date: Thu, 3 Oct 2024 19:09:27 -0300 Subject: [PATCH] ci: try adding arm with linux --- .github/workflows/release.yml | 8 ++++---- Cross.toml | 8 -------- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 048f4b6..430b0ac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,10 +55,10 @@ jobs: # runner: ubuntu-latest # target: riscv64gc-unknown-linux-gnu # command: cross - # - name: Linux-arm64 - # runner: ubuntu-latest - # target: aarch64-unknown-linux-gnu - # command: cross + - name: Linux-arm64 + runner: ubuntu-latest + target: aarch64-unknown-linux-gnu + command: cargo - name: MacOS-amd64 runner: macos-latest target: x86_64-apple-darwin diff --git a/Cross.toml b/Cross.toml index 360f99e..85f725e 100644 --- a/Cross.toml +++ b/Cross.toml @@ -5,11 +5,3 @@ pre-build = [ "dpkg --add-architecture $CROSS_DEB_ARCH", "apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH protobuf-compiler", ] - -[target.aarch64-unknown-linux-gnu] -image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:edge" -# add depency for reqwest that use openssl and protobuf for celestia -pre-build = [ - "dpkg --add-architecture $CROSS_DEB_ARCH", - "apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH protobuf-compiler", -]