Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
GHA: maybe I need to mount the workspace
  • Loading branch information
gaborcsardi committed Sep 23, 2024
commit 3b453ece0d51257d85307720a315ce7f18aaee6b
6 changes: 5 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ jobs:
linux-build-aarch64:
if: ${{ github.event.inputs.inplinuxaarch64 == '' || github.event.inputs.inplinuxaarch64 == 'yes' }}
runs-on: [linux-arm64]
container: ubuntu:24.04
container:
image: "ubuntu:24.04"
volumes:
- ${{ github.workspace }}:/${{ github.workspace }}
name: Linux build aaarch
env:
RUST_BACKTRACE: 1
Expand All @@ -154,6 +157,7 @@ jobs:

- name: Build rig
run: |
cd ${{ github.workspace }}
make linux-in-docker

- name: Upload build as artifact
Expand Down