Skip to content

Commit

Permalink
ci: update ci_qemu.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechsTech committed Jun 9, 2023
1 parent 745660c commit 84c57b7
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci_qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,33 @@ jobs:
fail-fast: false
matrix:
include:
- target: arm
arch: armv6
distro: buster
- target: arm
arch: armv7
distro: archarm_latest
- target: aarch64
arch: aarch64
distro: ubuntu_latest
- target: ppc64v2
arch: ppc64le
distro: ubuntu_latest
- target: riscv64
arch: riscv64
distro: ubuntu_latest
- target: s390x
arch: s390x
distro: ubuntu_latest
steps:
- uses: actions/checkout@v3
- uses: uraimo/run-on-arch-action@v2
with:
arch: ${{ matrix.arch }}
distro: ubuntu_latest
distro: ${{ matrix.distro }}
install: |
apt-get update -q -y
apt-get install -q -y --no-install-recommends cmake build-essential
apt-get install -q -y cmake build-essential
env: |
# Valgrind on arm will fail if the stack size is larger than 8MB.
# Set QEMUs stack size to 8MB since Github runners use 16MB default.
Expand Down

0 comments on commit 84c57b7

Please sign in to comment.