Skip to content

test: migrate from Catch2 to GTest #136

test: migrate from Catch2 to GTest

test: migrate from Catch2 to GTest #136

# ref: https://toolchains.bootlin.com/
name: mips Toolchain
on: [push, pull_request, workflow_dispatch]
# Building using the github runner environement directly.
jobs:
mips:
strategy:
matrix:
targets: [
# https://go.dev/doc/install/source#environment
mips, # alias to mips32-r6
mipsel, # alias to mips32el-r6
mips32-r6, # codespace
mips32el-r6, # codespace
mips32-r2, # codespace
mips32el-r2, # codespace
]
fail-fast: false
name: Linux • Toolchain ${{ matrix.targets }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build env stage
run: make --directory=ci ${{ matrix.targets }}_env
- name: Build devel stage
run: make --directory=ci ${{ matrix.targets }}_devel
- name: Build toolchain stage
run: make --directory=ci ${{ matrix.targets }}_toolchain
- name: Build build stage
run: make --directory=ci ${{ matrix.targets }}_build
- name: Build Test stage
run: make --directory=ci ${{ matrix.targets }}_test