-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
# adapted from Numpy's linux-qemu.yml file | ||
name: Linux Qemu tests | ||
|
||
on: [push, pull_request] | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
linux_qemu: | ||
runs-on: ubuntu-22.04 | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
BUILD_PROP: | ||
- [ | ||
"armhf", | ||
"arm-linux-gnueabihf", | ||
"arm32v7/ubuntu:22.04", | ||
] | ||
- [ | ||
"ppc64le", | ||
"powerpc64le-linux-gnu", | ||
"ppc64le/ubuntu:22.04", | ||
] | ||
- [ | ||
"ppc64le - baseline(Power9)", | ||
"powerpc64le-linux-gnu", | ||
"ppc64le/ubuntu:22.04", | ||
] | ||
- [ | ||
"s390x", | ||
"s390x-linux-gnu", | ||
"s390x/ubuntu:22.04", | ||
] | ||
- [ | ||
"s390x - baseline(Z13)", | ||
"s390x-linux-gnu", | ||
"s390x/ubuntu:22.04", | ||
] | ||
- [ | ||
"riscv64", | ||
"riscv64-linux-gnu", | ||
"riscv64/ubuntu:22.04", | ||
] | ||
env: | ||
TOOLCHAIN_NAME: ${{ matrix.BUILD_PROP[1] }} | ||
DOCKER_CONTAINER: ${{ matrix.BUILD_PROP[2] }} | ||
MESON_OPTIONS: ${{ matrix.BUILD_PROP[3] }} | ||
TERM: xterm-256color | ||
|
||
name: "${{ matrix.BUILD_PROP[0] }}" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
fetch-depth: 0 | ||
|
||
- name: Initialize binfmt_misc for qemu-user-static | ||
run: | | ||
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | ||
- name: Install GCC cross-compilers | ||
run: | | ||
sudo apt update | ||
sudo apt install -y ninja-build gcc-${TOOLCHAIN_NAME} g++-${TOOLCHAIN_NAME} gfortran-${TOOLCHAIN_NAME} | ||
- name: Cache docker container | ||
uses: actions/cache@v3 | ||
id: container-cache | ||
with: | ||
path: ~/docker_${{ matrix.BUILD_PROP[1] }} | ||
key: container-${{ runner.os }}-${{ matrix.BUILD_PROP[1] }}-${{ matrix.BUILD_PROP[2] }}-${{ hashFiles('build_requirements.txt') }} | ||
|
||
- name: Creates new container | ||
if: steps.container-cache.outputs.cache-hit != 'true' | ||
run: | | ||
docker run --name the_container --interactive -v /:/host -v $(pwd):/gfort2py ${DOCKER_CONTAINER} /bin/bash -c " | ||
apt update && | ||
apt install -y cmake git python3 python-is-python3 python3-dev python3-pip python3-numpy automake && | ||
mkdir -p /lib64 && ln -s /host/lib64/ld-* /lib64/ && | ||
ln -s /host/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu && | ||
rm -rf /usr/${TOOLCHAIN_NAME} && ln -s /host/usr/${TOOLCHAIN_NAME} /usr/${TOOLCHAIN_NAME} && | ||
rm -rf /usr/lib/gcc/${TOOLCHAIN_NAME} && ln -s /host/usr/lib/gcc-cross/${TOOLCHAIN_NAME} /usr/lib/gcc/${TOOLCHAIN_NAME} && | ||
rm -f /usr/bin/gcc && ln -s /host/usr/bin/${TOOLCHAIN_NAME}-gcc /usr/bin/gcc && | ||
rm -f /usr/bin/g++ && ln -s /host/usr/bin/${TOOLCHAIN_NAME}-g++ /usr/bin/g++ && | ||
rm -f /usr/bin/gfortran && ln -s /host/usr/bin/${TOOLCHAIN_NAME}-gfortran /usr/bin/gfortran && | ||
rm -f /usr/bin/ar && ln -s /host/usr/bin/${TOOLCHAIN_NAME}-ar /usr/bin/ar && | ||
rm -f /usr/bin/as && ln -s /host/usr/bin/${TOOLCHAIN_NAME}-as /usr/bin/as && | ||
rm -f /usr/bin/ld && ln -s /host/usr/bin/${TOOLCHAIN_NAME}-ld /usr/bin/ld && | ||
rm -f /usr/bin/ld.bfd && ln -s /host/usr/bin/${TOOLCHAIN_NAME}-ld.bfd /usr/bin/ld.bfd && | ||
rm -f /usr/bin/ninja && ln -s /host/usr/bin/ninja /usr/bin/ninja && | ||
git config --global --add safe.directory /gfort2py && | ||
python -m pip install build wheel pytest cpyparsing && | ||
rm -f /usr/local/bin/ninja && mkdir -p /usr/local/bin && ln -s /host/usr/bin/ninja /usr/local/bin/ninja | ||
" | ||
docker commit the_container the_container | ||
mkdir -p "~/docker_${TOOLCHAIN_NAME}" | ||
docker save -o "~/docker_${TOOLCHAIN_NAME}/the_container.tar" the_container | ||
- name: Load container from cache | ||
if: steps.container-cache.outputs.cache-hit == 'true' | ||
run: docker load -i "~/docker_${TOOLCHAIN_NAME}/the_container.tar" | ||
|
||
- name: Meson Build | ||
run: | | ||
docker run --rm -e "TERM=xterm-256color" -v $(pwd):/gfort2py -v /:/host the_container \ | ||
/bin/script -e -q -c "/bin/bash --noprofile --norc -eo pipefail -c ' | ||
cd /gfort2py && spin build --clean -- ${MESON_OPTIONS} | ||
'" | ||
- name: Meson Log | ||
if: always() | ||
run: 'cat build/meson-logs/meson-log.txt' | ||
|
||
- name: Run Tests | ||
run: | | ||
docker run --rm -e "TERM=xterm-256color" -v $(pwd):/gfort2py -v /:/host the_container \ | ||
/bin/script -e -q -c "/bin/bash --noprofile --norc -eo pipefail -c ' | ||
export F90=/usr/bin/gfortran | ||
cd /gfort2py && pytest\" | ||
'" | ||