bump asio version #2
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: Aarch64 Linux Musl | |
on: | |
workflow_dispatch: | |
inputs: | |
extra_resolve_options: | |
description: Extra Resolve Options | |
required: false | |
schedule: | |
- cron: 0 1 * * * | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
cross-compile: | |
timeout-minutes: 45 | |
strategy: | |
fail-fast: false | |
runs-on: [self-hosted, vm, ubuntu-current] | |
name: Raspberry Pi Cross-compile | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Clone toolchains | |
run: rm -rf ~/toolchains && git clone --depth 1 git@github.com:steinwurf/cmake-toolchains.git ~/toolchains | |
- name: CMake Cleanup | |
run: cmake -E remove_directory cmake_build | |
- name: CMake Configure | |
uses: nick-fields/retry@v3 | |
with: | |
max_attempts: 3 | |
timeout_minutes: 15 | |
command: cmake -B cmake_build -DSTEINWURF_RESOLVE_OPTIONS="--git_protocol=git@ $EXTRA_RESOLVE_OPTIONS" -DCMAKE_CXX_COMPILER=${{ matrix.config.cxx }} -DCMAKE_C_COMPILER=${{ matrix.config.cc }} -DCMAKE_BUILD_TYPE=WurfRelease -DCMAKE_TOOLCHAIN_FILE=~/toolchains/zig-toolchain-aarch64-linux-musl.cmake -GNinja | |
- name: CMake Build | |
run: cmake --build cmake_build -j$(( ( $(nproc) + 1 ) / 2 )) | |
tests: | |
needs: cross-compile | |
strategy: | |
fail-fast: false | |
runs-on: [self-hosted, raspberry_pi_4] | |
name: Run Tests on Raspberry Pi | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Download Test Binary Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: plumr_tests | |
- name: List files | |
run: ls -l | |
- name: Run all tests | |
run: chmod +x plumr_tests | |
- name: Get backtrace on failure if available | |
run: | | |
if ! ./plumr_tests; then | |
echo "Test failed, getting backtrace" | |
gdb -batch -ex "r" -ex "thread apply all backtrace full" -ex "quit" ./plumr_tests | |
exit 1 | |
fi | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true |