Skip to content

crossdev: Bootstrap the full LLVM toolchain #50

crossdev: Bootstrap the full LLVM toolchain

crossdev: Bootstrap the full LLVM toolchain #50

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/crossdev.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/crossdev.yml: Unexpected tag '!(matrix.stage3.toolchain'
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: 00 4 * * *
jobs:
crossdev:
strategy:
matrix:
# All targets which are known to be broken, are commented. Pull
# requests fixing them welcome!
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
# 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
- target: armv7-unknown-linux-musleabi
- target: armv7-unknown-linux-musleabihf
# binutils fails to configure: `machine 'loongaarch64-unknown' not
# recognized`
# - 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
# libgcc_s.so fails to build: `cannot find crti.o: No such file or
# directory`.
# - target: mips64-unknown-linux-musl
- target: mips64el-unknown-linux-gnu
# libgcc_s.so fails to build: `cannot find crti.o: No such file or
# directory`.
# - 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
# busybox fails to buils: `‘SYS_settimeofday’ undeclared`.
# - target: riscv32-unknown-linux-musl
- target: riscv64-unknown-linux-gnu
- target: riscv64-unknown-linux-musl
# glibc fails to build: `no support for pre-v8 sparc`.
# - target: sparc-unknown-linux-gnu
- target: sparc64-unknown-linux-gnu
- target: s390x-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
# 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:
- tag: latest # `openrc` (glibc+GCC) is tagged as `latest`
toolchain: gcc
- tag: llvm
toolchain: llvm
- tag: musl
toolchain: gcc
- tag: musl-llvm
toolchain: llvm
fail-fast: false
name: crossdev target=${{ matrix.target.target }} stage3=${{ matrix.stage3.tag }} toolchain=${{ matrix.stage3.toolchain }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create cross environment
if: !(matrix.stage3.toolchain == 'llvm' && contains(matrix.target.target, '-gnu'))
env:
CONTAINER_ENGINE: docker
LLVM: ${{ matrix.stage3.toolchain == 'llvm' && '1' || '0' }}
run: |
./scripts/container_test.sh \
--tag ${{ matrix.stage3.tag }} \
--target ${{ matrix.target.target }} \
${{ matrix.target.args }}