Files
ortools-clone/.github/workflows/mips_toolchain.yml
dependabot[bot] 9eb22bab78 build(deps): bump actions/checkout in the github-actions group
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>
2025-11-25 01:29:45 -08:00

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