We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c38446 commit 8ea604cCopy full SHA for 8ea604c
.github/workflows/arm.yml
@@ -25,10 +25,18 @@ jobs:
25
runs-on: ubuntu-20.04
26
env:
27
CC: clang
28
- container:
29
- image: multiarch/ubuntu-core:arm64-focal
30
- # options: --privileged # Privileged mode is needed to load fuse module.
31
steps:
+ - run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
+ - uses: docker://multiarch/ubuntu-core:s390x-focal
+ with:
32
+ # Docker runs the command as root, but we want the build/test to run
33
+ # as non-root so permissions based tests run correctly
34
+ args: >
35
+ bash -c
36
+ "
37
+ ls
38
39
+ - run: ls
40
# - uses: actions/checkout@v3
41
# with:
42
# repository: 'neovim/neovim'
0 commit comments