We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97e275d commit 232455cCopy full SHA for 232455c
.github/workflows/build-libs.yml
@@ -80,16 +80,14 @@ jobs:
80
name: Linux-ARM
81
if: "! contains(github.event.head_commit.message, '[skip ci]')"
82
runs-on: ubuntu-latest
83
- container: streetcred/ubuntu:20.04-arm64
+ container: arm64v8/rust:latest
84
steps:
85
- name: Checkout
86
uses: actions/checkout@v1
87
- with:
88
- submodules: "true"
89
-
90
- name: Run build script
91
- run: ./devops/BuildLibraries.ps1 -Platform Linux-ARM -OutLocation ./libs/linux-arm
92
- shell: pwsh
+ run: |
+ rustup target add aarch64-unknown-linux-gnu
+ cargo build --release --target aarch64-unknown-linux-gnu
93
- name: Upload Linux-ARMv7 artifact
94
uses: actions/upload-artifact@v2
95
with:
devops/Dockerfile
0 commit comments