Add wasm build instructions and fdtd3dbench target with predefined co… #56
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: CI-build-riscv64 | |
on: | |
pull_request: | |
branches: [ "master" ] | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
if: ${{ github.event_name != 'pull_request' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'notest') != true) }} | |
strategy: | |
fail-fast: false | |
matrix: | |
build_mode: [Release, RelWithDebInfo, Debug] | |
cxx11: [ON, OFF] | |
runs-on: ubuntu-latest | |
name: Build riscv64 ubuntu 22.04 BUILD_MODE=${{ matrix.build_mode }}, CXX11=${{ matrix.cxx11 }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Ubuntu | |
run: | | |
sudo apt install gcc-riscv64-linux-gnu g++-riscv64-linux-gnu qemu-user-static debootstrap | |
- name: Build | |
run: | | |
export ROOTFS=${GITHUB_WORKSPACE}/rootfs/riscv64 | |
sudo ./create-ubuntu-rootfs.sh riscv64 jammy | |
TOOLCHAIN_VER=$(ls $ROOTFS/usr/include/c++/) | |
sed -i "s,set(TOOLCHAIN_VERSION \"9\"),set(TOOLCHAIN_VERSION \"$TOOLCHAIN_VER\")," riscv64-gcc-toolchain.cmake | |
./Tools/test-build.sh ${GITHUB_WORKSPACE} ${GITHUB_WORKSPACE}/Build "riscv64-linux-gnu-gcc,riscv64-linux-gnu-g++" ${{ matrix.build_mode }} ${{ matrix.cxx11 }} "" "" "" "OFF,1,x" "OFF,sm" "ALL" "riscv64-gcc-toolchain.cmake" |