Skip to content

Add wasm build instructions and fdtd3dbench target with predefined co… #47

Add wasm build instructions and fdtd3dbench target with predefined co…

Add wasm build instructions and fdtd3dbench target with predefined co… #47

Workflow file for this run

name: CI-unit-test-arm
on:
pull_request:
branches: [ "master" ]
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-test-matrix-relwithdebinfo-and-debug:
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:
name: [grid, dumpers-loaders, coordinate, settings, approximation, complex]
runs-on: ubuntu-latest
name: Unit test arm ubuntu 22.04 for ${{ matrix.name }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ubuntu
run: |
sudo apt install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf qemu-user-static debootstrap
- name: Build and Run
run: |
export ROOTFS=${GITHUB_WORKSPACE}/rootfs/armhf
sudo ./create-ubuntu-rootfs.sh armhf jammy
TOOLCHAIN_VER=$(ls $ROOTFS/usr/include/c++/)
sed -i "s,set(TOOLCHAIN_VERSION \"8\"),set(TOOLCHAIN_VERSION \"$TOOLCHAIN_VER\")," arm-gcc-toolchain.cmake
./Tools/test-units.sh ${GITHUB_WORKSPACE} ${GITHUB_WORKSPACE}/Build "${GITHUB_WORKSPACE}/Tools/UnitTests/native/build-and-run-unit-test-${{ matrix.name }}.sh" "arm-linux-gnueabihf-gcc,arm-linux-gnueabihf-g++" "" "" "" "f d" "arm-gcc-toolchain.cmake"
unit-test-matrix-relwithdebinfo:
if: ${{ github.event_name != 'pull_request' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'notest') != true) }}
strategy:
matrix:
name: [layout, internalscheme]
cxx11: [ON, OFF]
complex_values: [ON, OFF]
runs-on: ubuntu-latest
name: Unit test arm ubuntu 22.04 for ${{ matrix.name }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ubuntu
run: |
sudo apt install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf qemu-user-static debootstrap
- name: Build and Run
run: |
export ROOTFS=${GITHUB_WORKSPACE}/rootfs/armhf
sudo ./create-ubuntu-rootfs.sh armhf jammy
TOOLCHAIN_VER=$(ls $ROOTFS/usr/include/c++/)
sed -i "s,set(TOOLCHAIN_VERSION \"8\"),set(TOOLCHAIN_VERSION \"$TOOLCHAIN_VER\")," arm-gcc-toolchain.cmake
./Tools/test-units.sh ${GITHUB_WORKSPACE} ${GITHUB_WORKSPACE}/Build "${GITHUB_WORKSPACE}/Tools/UnitTests/native/build-and-run-unit-test-${{ matrix.name }}.sh" "arm-linux-gnueabihf-gcc,arm-linux-gnueabihf-g++" "RelWithDebInfo" "${{ matrix.cxx11 }}" "${{ matrix.complex_values }}" "f d" "arm-gcc-toolchain.cmake"