Skip to content

ci: Test more targets, move the testing logic to a script #40

ci: Test more targets, move the testing logic to a script

ci: Test more targets, move the testing logic to a script #40

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: 00 4 * * *
jobs:
crossdev:
strategy:
matrix:
target:
- target: aarch64-unknown-linux-gnu
- target: aarch64-unknown-linux-musl
- target: arm-unknown-linux-gnueabi
- target: arm-unknown-linux-gnueabihf
- target: arm-unknown-linux-musleabi
- target: arm-unknown-linux-musleabihf
- target: armeb-unknown-linux-gnueabi
- target: armeb-unknown-linux-gnueabihf
- target: armeb-unknown-linux-musleabi
- target: armeb-unknown-linux-musleabihf
- target: armv7-unknown-linux-gnueabi
- target: armv7-unknown-linux-gnueabihf
- target: armv7-unknown-linux-musleabi
- target: armv7-unknown-linux-musleabihf
- target: loongaarch64-unknown-linux-gnu
- target: loongaarch64-unknown-linux-musl
- target: m68k-unknown-linux-gnu
- target: mips-unknown-linux-gnu
- target: mips-unknown-linux-musl
- target: mipsel-unknown-linux-gnu
- target: mipsel-unknown-linux-musl
- target: mips64-unknown-linux-gnu
- target: mips64-unknown-linux-musl
- target: mips64el-unknown-linux-gnu
- target: mips64el-unknown-linux-musl
- target: or1k-unknown-linux-gnu
args: --skip-system
- target: or1k-unknown-linux-musl
args: --skip-system
- target: powerpc-unknown-linux-gnu
- target: powerpc-unknown-linux-musl
- target: powerpc64-unknown-linux-gnu
- target: powerpc64-unknown-linux-musl
- target: riscv32-unknown-linux-gnu
- target: riscv32-unknown-linux-musl
- target: riscv64-unknown-linux-gnu
- target: riscv64-unknown-linux-musl
- target: sparc-unknown-linux-gnu
- target: sparc64-unknown-linux-gnu
- target: s390x-unknown-linux-gnu
- target: s390x-unknown-linux-musl
# All sh* targets fail to install binutils, because of a missing
# keyword.
# - target: sh2-unknown-linux-gnu
# - target: sh2-unknown-linux-musl
# - target: sh2eb-unknown-linux-gnu
# - target: sh2eb-unknown-linux-musl
# - target: sh4-unknown-linux-gnu
# - target: sh4-unknown-linux-musl
# - target: sh4eb-unknown-linux-gnu
# - target: sh4eb-unknown-linux-musl
- target: x86_64-unknown-linux-gnu
- target: x86_64-unknown-linux-musl
stage3:
- latest # `openrc` (glibc+GCC) is tagged as `latest`
- musl
# We exclude combinations which are known to be broken.
# Pull requests fixing them welcome!
exclude:
# glibc fails to build: `attempt to use an ARM instruction on a
# Thumb-only processor`.
- target: armv7-unknown-linux-gnueabi
- target: armv7-unknown-linux-gnueabihf
# libgcc_s.so fails to build: `cannot find crti.o: No such file or
# directory`.
- target: mips64-unknown-linux-musl
- target: mips64el-unknown-linux-musl
# busybox fails to buils: `‘SYS_settimeofday’ undeclared`.
- target: riscv32-unknown-linux-musl
# glibc fails to build: `no support for pre-v8 sparc`.
- target: sparc-unknown-linux-gnu
# musl ebuilds don't support s390x. The target is supported upstream,
# we need to fix and test our ebuilds.
- target: s390x-unknown-linux-musl
fail-fast: false
name: crossdev target=${{ matrix.target.target }} stage3=${{ matrix.stage3 }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create cross environment
run: |
./scripts/container_test.sh \
--tag ${{ matrix.stage3 }} \
--target ${{ matrix.target.target }} \
${{ matrix.target.args }}
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3