Skip to content

Commit 2a29afc

Browse files
committed
chore: use docker image with ARM dependencies
1 parent eb75980 commit 2a29afc

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/actions/setup-rust/action.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ inputs:
1010
runs:
1111
using: "composite"
1212
steps:
13-
- name: Install ARM cross-compilation tools
14-
shell: bash
15-
if: inputs.install-arm == 'true'
16-
run: sudo apt-get update && sudo apt-get install --assume-yes --no-install-recommends g++-aarch64-linux-gnu
17-
1813
- name: Install rust
1914
shell: bash
2015
run: |

.github/workflows/build.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919

2020
name: build (${{ matrix.target.arch }} ${{ matrix.target.name }})
2121
runs-on: ubuntu-24.04
22+
container: ghcr.io/${{ github.repository }}/ubuntu-aarch64:24.04
2223

2324
steps:
2425
- name: Checkout repository

.github/workflows/release-draft.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424

2525
name: build (${{ matrix.target.arch }} ${{ matrix.target.name }})
2626
runs-on: ubuntu-24.04
27+
container: ghcr.io/${{ github.repository }}/ubuntu-aarch64:24.04
2728

2829
steps:
2930
- name: Checkout repository

0 commit comments

Comments
 (0)