ci: remove 32bits arch (not supported by abseil-cpp) #138
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ref: https://toolchains.bootlin.com/ | |
name: aarch64 Toolchain | |
on: [push, pull_request, workflow_dispatch] | |
# Building using the github runner environement directly. | |
jobs: | |
aarch64: | |
strategy: | |
matrix: | |
targets: [ | |
# https://go.dev/doc/install/source#environment | |
arm64, # alias to aarch64 | |
arm64be, # alias to aarch64be | |
aarch64, # bootlin | |
aarch64be # bootlin | |
] | |
fail-fast: false | |
name: Linux • Toolchain ${{ matrix.targets }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build env stage | |
run: make --directory=ci ${{ matrix.targets }}_env | |
- name: Build devel stage | |
run: make --directory=ci ${{ matrix.targets }}_devel | |
- name: Build toolchain stage | |
run: make --directory=ci ${{ matrix.targets }}_toolchain | |
- name: Build build stage | |
run: make --directory=ci ${{ matrix.targets }}_build | |
- name: Build Test stage | |
run: make --directory=ci ${{ matrix.targets }}_test |