Skip to content

ci: bump actions/checkout to v4 #37

ci: bump actions/checkout to v4

ci: bump actions/checkout to v4 #37

name: mips64 Toolchain
on: [push, pull_request, workflow_dispatch]
jobs:
# Building using the github runner environement directly.
mips64:
runs-on: ubuntu-latest
strategy:
matrix:
targets: [
[mips64], # OCI alias
[mips64le], # OCI alias
[mips64-r6],
[mips64el-r6],
[mips64-r2],
[mips64el-r2]
]
fail-fast: false
env:
TARGET: ${{ matrix.targets[0] }}
steps:
- uses: actions/checkout@v4
- name: Build
run: make --directory=ci ${TARGET}_build
- name: Test
run: make --directory=ci ${TARGET}_test