Integrate RISC-V support #2
Workflow file for this run
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
name: "Build & Test" | |
on: | |
# allow direct trigger | |
workflow_dispatch: | |
push: | |
pull_request: | |
permissions: | |
contents: read | |
env: | |
COMMON_CMAKE_FLAGS: | | |
-DSLEEF_SHOW_CONFIG=1 | |
-DDISABLE_SSL=ON | |
-DBUILD_GNUABI_LIBS=ON | |
-DBUILD_INLINE_HEADERS=ON | |
-DBUILD_DFT=ON | |
-DBUILD_QUAD=ON | |
-DBUILD_SCALAR_LIB=ON | |
-DBUILD_STATIC_TEST_BINS=ON | |
jobs: | |
build-native: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Install dependencies | |
run: sudo apt-get update -y -qq && sudo apt-get install -y -qq build-essential clang curl ninja-build libgmp-dev libmpfr-dev | |
- name: Build native | |
shell: bash -ex -o pipefail {0} | |
run: | | |
EXTRA_CMAKE_FLAGS="-DENFORCE_SSE2=ON -DENFORCE_SSE4=ON -DENFORCE_AVX=ON -DENFORCE_AVX=ON -DENFORCE_AVX2=ON -DENFORCE_AVX512F=ON -DENFORCE_FMA4=ON" | |
cmake -S . -B _build-native -GNinja \ | |
-DCMAKE_INSTALL_PREFIX=$(pwd)/_install-native \ | |
${COMMON_CMAKE_FLAGS} \ | |
${EXTRA_CMAKE_FLAGS} | |
cmake --build _build-native | |
cmake --install _build-native | |
- name: Upload build-native artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-native | |
path: | | |
_build-* | |
_install-* | |
if: always() | |
test-native: | |
runs-on: ubuntu-latest | |
needs: [build-native] | |
steps: | |
- uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Install dependencies | |
run: sudo apt-get update -y -qq && sudo apt-get install -y -qq libgmp-dev libmpfr-dev | |
- name: Print host CPU info | |
run: | | |
cat /proc/cpuinfo | |
- name: Download build-native artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-native | |
- name: Fix build-native permissions | |
run: | | |
chmod +x _build-native/bin/* | |
- name: Test native | |
env: | |
CTEST_OUTPUT_ON_FAILURE: "TRUE" | |
run: | | |
cd _build-native | |
ctest -j$(nproc) | |
- name: Upload test-native artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-native | |
path: | | |
_build-native/Testing | |
if: always() | |
build-cross: | |
runs-on: ubuntu-latest | |
needs: [build-native] | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# AArch64 | |
- arch: aarch64 | |
# Aarch32 | |
- arch: armhf | |
package: -arm-linux-gnueabihf | |
# PPC64 | |
- arch: ppc64el | |
package: -powerpc64le-linux-gnu | |
# IBM Z | |
- arch: s390x | |
# RISC-V | |
- arch: riscv64 | |
name: build-${{ matrix.arch }} | |
steps: | |
- uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y -qq | |
sudo apt-get install -y -qq build-essential clang curl ninja-build libgmp-dev libmpfr-dev gcc${{ matrix.package || format('-{0}-linux-gnu', matrix.arch) }} | |
- name: Download riscv-gnu-toolchain's LLVM build | |
env: | |
RISCV_GNU_TOOLCHAIN_TAG: "2023.10.18" | |
run: | | |
curl -L https://github.com/riscv-collab/riscv-gnu-toolchain/releases/download/${RISCV_GNU_TOOLCHAIN_TAG}/riscv64-glibc-ubuntu-20.04-llvm-nightly-${RISCV_GNU_TOOLCHAIN_TAG}-nightly.tar.gz | | |
tar xzf - -C /opt | |
if: ${{ matrix.arch == 'riscv64' }} | |
- name: Download build-native artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-native | |
- name: Fix build-native permissions | |
run: | | |
chmod +x _build-native/bin/* | |
- name: Build ${{ matrix.arch }} | |
shell: bash -ex -o pipefail {0} | |
run: | | |
# Add riscv-gnu-toolchain to PATH | |
if [[ ${{ matrix.arch }} = "riscv64" ]]; then | |
export PATH="/opt/riscv/bin:$PATH" | |
fi | |
EXTRA_CMAKE_FLAGS="" | |
if [[ ${{ matrix.arch }} = "aarch64" ]]; then | |
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DENFORCE_SVE=ON" | |
elif [[ ${{ matrix.arch }} = "armhf" ]]; then | |
# Disable inline headers, they just don't compile on armhf | |
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DBUILD_INLINE_HEADERS=OFF" | |
elif [[ ${{ matrix.arch }} = "ppc64el" ]]; then | |
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DENFORCE_VSX=ON -DENFORCE_VSX3=ON" | |
elif [[ ${{ matrix.arch }} = "s390x" ]]; then | |
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DENFORCE_VXE=ON" | |
# Disable VXE2 support, QEMU doesn't support it | |
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DDISABLE_VXE2=ON" | |
elif [[ ${{ matrix.arch }} = "riscv64" ]]; then | |
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DENFORCE_RVVM1=ON -DENFORCE_RVVM2=ON" | |
# Disable inline headers, they just don't compile on riscv64 | |
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DBUILD_INLINE_HEADERS=OFF" | |
# Disable dft, it fails with linker error to `cexp` | |
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DBUILD_DFT=OFF" | |
# Disable quad, it's missing the `Sleef_quad` function | |
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DBUILD_QUAD=OFF" | |
fi | |
cmake -S . -B _build-${{ matrix.arch }} -GNinja \ | |
-DCMAKE_INSTALL_PREFIX="$(pwd)/_install-${{ matrix.arch }}" \ | |
-DCMAKE_TOOLCHAIN_FILE=$(pwd)/travis/toolchain-${{ matrix.arch }}.cmake \ | |
-DNATIVE_BUILD_DIR="$(pwd)/_build-native" \ | |
${COMMON_CMAKE_FLAGS} \ | |
${EXTRA_CMAKE_FLAGS} | |
cmake --build _build-${{ matrix.arch }} | |
cmake --install _build-${{ matrix.arch }} | |
- name: Upload build-${{ matrix.arch }} artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-${{ matrix.arch }} | |
path: | | |
_build-${{ matrix.arch }} | |
_install-${{ matrix.arch }} | |
if: always() | |
test-cross: | |
runs-on: ubuntu-latest | |
needs: [build-native, build-cross] | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# AArch64 | |
- arch: aarch64 | |
qemu_cpu: "max,sve=off" | |
- arch: aarch64 | |
qemu_cpu: "max,sve=on,sve128=on" | |
- arch: aarch64 | |
qemu_cpu: "max,sve=on,sve256=on" | |
- arch: aarch64 | |
qemu_cpu: "max,sve=on,sve512=on" | |
# Aarch32 | |
- arch: armhf | |
binfmt: arm | |
qemu_cpu: "max" | |
# PPC64 | |
- arch: ppc64el | |
binfmt: ppc64le | |
qemu_cpu: "power10" | |
# IBM Z | |
# TODO: figure out qemu_cpu variable to make tests pass on QEMU | |
- arch: s390x | |
# RISC-V | |
- arch: riscv64 | |
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=false" | |
- arch: riscv64 | |
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=128,elen=64,vext_spec=v1.0" | |
- arch: riscv64 | |
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=256,elen=64,vext_spec=v1.0" | |
- arch: riscv64 | |
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=512,elen=64,vext_spec=v1.0" | |
name: "test-${{ matrix.arch }} (qemu_cpu: \"${{ matrix.qemu_cpu }}\")" | |
steps: | |
- uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- uses: docker/[email protected] | |
with: | |
platforms: ${{ matrix.binfmt || matrix.arch }} | |
- name: Install dependencies | |
run: sudo apt-get update -y -qq && sudo apt-get install -y -qq libgmp-dev libmpfr-dev | |
- name: Print host CPU info | |
run: | | |
cat /proc/cpuinfo | |
- name: Download build-native artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-native | |
- name: Download build-${{ matrix.arch }} artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-${{ matrix.arch }} | |
- name: Fix build-native and _build-${{ matrix.arch }} permissions | |
run: | | |
chmod +x _build-native/bin/* | |
chmod +x _build-${{ matrix.arch }}/bin/* | |
- name: Test ${{ matrix.arch }} | |
env: | |
CTEST_OUTPUT_ON_FAILURE: "TRUE" | |
run: | | |
if [[ -n "${{ matrix.qemu_cpu }}" ]]; then | |
export QEMU_CPU="${{ matrix.qemu_cpu }}" | |
fi | |
cd _build-${{ matrix.arch }} | |
ctest -j$(nproc) | |
- name: Upload test-${{ matrix.arch }}-${{ strategy.job-index }} artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-${{ matrix.arch }}-${{ strategy.job-index }} | |
path: | | |
_build-${{ matrix.arch }}/Testing | |
if: always() |