Skip to content

bump deps

bump deps #114

Workflow file for this run

name: arm Toolchain
on: [push, pull_request, workflow_dispatch]
jobs:
# Building using the github runner environement directly.
arm:
runs-on: ubuntu-latest
strategy:
matrix:
targets: [
# https://go.dev/doc/install/source#environment
[arm-linux-gnueabihf],
[armv8l-linux-gnueabihf],
[arm-linux-gnueabi],
[armeb-linux-gnueabihf],
[armeb-linux-gnueabi]
]
fail-fast: false
env:
TARGET: ${{ matrix.targets[0] }}
steps:
- uses: actions/checkout@v4
- name: Build
run: make --directory=ci ${TARGET}_build
- name: Test
run: make --directory=ci ${TARGET}_test