Skip to content

ci: cleanup toolchain workflows #115

ci: cleanup toolchain workflows

ci: cleanup toolchain workflows #115

Workflow file for this run

name: arm Toolchain
on: [push, pull_request, workflow_dispatch]
# Building using the github runner environement directly.
jobs:
arm:
strategy:
matrix:
targets: [
# https://go.dev/doc/install/source#environment
arm-linux-gnueabihf, # linaro
armv8l-linux-gnueabihf, # linaro
arm-linux-gnueabi, # linaro
armeb-linux-gnueabihf, # linaro
armeb-linux-gnueabi # linaro
]
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 build stage
run: make --directory=ci ${{ matrix.targets }}_build
- name: Build Test stage
run: make --directory=ci ${{ matrix.targets }}_test