mirror of
https://github.com/google/or-tools.git
synced 2026-03-26 21:08:29 +00:00
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4 to 5 - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
872 B
YAML
29 lines
872 B
YAML
# ref: https://toolchains.bootlin.com/
|
|
name: aarch64 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:
|
|
aarch64:
|
|
strategy:
|
|
matrix:
|
|
targets: [aarch64, aarch64be]
|
|
fail-fast: false
|
|
name: Linux•Toolchain ${{matrix.targets}}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- 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
|