cpu/sam0_common/periph_gpio_ll: fix gpio_get_port() and gpio_ll_query_conf() [backport 2024.10] #31877
Workflow file for this run
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
name: tools-buildtest | |
on: | |
push: | |
branches: | |
- master | |
- staging | |
- trying | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
merge_group: | |
jobs: | |
tools-build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 16 | |
matrix: | |
tools: # List of tools sorted by name in alphabetical order | |
- name: benchmark_udp | |
path: dist/tools | |
- name: bossa-1.8 | |
path: dist/tools | |
- name: bossa-1.9 | |
path: dist/tools | |
- name: bossa-nrf52 | |
path: dist/tools | |
- name: calc_spi_scalers | |
path: cpu/kinetis/dist | |
- name: clk_conf | |
path: cpu/stm32/dist | |
- name: edbg | |
path: dist/tools | |
- name: ethos | |
path: dist/tools | |
- name: fixdep | |
path: dist/tools | |
- name: flatc | |
path: dist/tools | |
- name: lpc2k_pgm | |
path: dist/tools | |
- name: mosquitto_rsmb | |
path: dist/tools | |
- name: riotboot_serial | |
path: dist/tools | |
- name: setsid | |
path: dist/tools | |
- name: uhcpd | |
path: dist/tools | |
- name: zep_dispatch | |
path: dist/tools | |
steps: | |
- uses: actions/checkout@main | |
- name: Build ${{ matrix.tools.name }} in ${{ matrix.tools.path }} | |
uses: aabadie/riot-action@main | |
with: | |
cmd: make -C ${{ matrix.tools.path }}/${{ matrix.tools.name }} | |
tools-build-success: | |
if: always() | |
needs: tools-build | |
runs-on: ubuntu-latest | |
steps: | |
- name: tools-build succeeded | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |