Skip to content

Commit

Permalink
Expand CI to include BE and 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
FGasper committed Mar 10, 2022
1 parent 0ba6480 commit 413eefd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,21 @@ jobs:
with:
url: https://github.com/unicode-org/icu/releases/download/release-70-1/icu4c-70_1-src.tgz

qemu:
runs-on: ubuntu-latest

strategy:
matrix:
platform:
- s390x
- arm32v7

steps:
- name: Get the qemu container
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Run tests on ${{ matrix.docker_image }}
run: docker run --rm --interactive ${{ matrix.platform }}/ubuntu bash -c "apt update; apt install -y curl perl make git gcc libicu-dev; git clone --recurse-submodules $GITHUB_SERVER_URL/$GITHUB_REPOSITORY; cd $( echo $GITHUB_REPOSITORY | cut -d/ -f2 ); curl -L https://cpanmin.us | perl - --notest --installdeps .; perl Makefile.PL; make; prove -wlvmb t"

freebsd:
runs-on: macos-10.15
steps:
Expand Down

0 comments on commit 413eefd

Please sign in to comment.