Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
906 B
YAML
29 lines
906 B
YAML
# ref: https://codescape.mips.com/components/toolchain/2021.09-01/downloads.html
|
|
name: mips Toolchain
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
concurrency:
|
|
group: ${{github.workflow}}-${{github.ref}}
|
|
cancel-in-progress: true
|
|
|
|
# Building using the github runner environement directly.
|
|
jobs:
|
|
mips:
|
|
strategy:
|
|
matrix:
|
|
targets: [mips64, mips64el]
|
|
fail-fast: false
|
|
name: Linux•Toolchain ${{matrix.targets}}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Build env stage
|
|
run: make --directory=cmake toolchain_${{matrix.targets}}_env
|
|
- name: Build devel stage
|
|
run: make --directory=cmake toolchain_${{matrix.targets}}_devel
|
|
- name: Build build stage
|
|
run: make --directory=cmake toolchain_${{matrix.targets}}_build
|
|
- name: Build Test stage
|
|
run: make --directory=cmake toolchain_${{matrix.targets}}_test
|