Files
ortools-clone/.github/workflows/mips_toolchain.yml
Corentin Le Molgat a5b650e203 cmake(ci): rework toolchain target
* Add toolchain_ prefix to avoid conflict with "platform" targets
* Update workflows
* Fix mipsel/mips64el target in cross_compile.sh
2023-10-23 14:15:07 +02:00

24 lines
750 B
YAML

name: mips Toolchain
on: [push, pull_request, workflow_dispatch]
# 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@v4
- 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