build(deps): bump the patch-minor-action-updates group across 1 directory with 3 updates #426
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: Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
env: | |
CMAKE_BUILD_PARALLEL_LEVEL: 2 | |
GTEST_COLOR: 1 | |
jobs: | |
host_build_test: | |
name: Host Build & Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
persist-credentials: false | |
- uses: hendrikmuhs/ccache-action@ed74d11c0b343532753ecead8a951bb09bb34bc9 # v1.2.14 | |
with: | |
key: ${{ github.job }}-${{ matrix.os }} | |
variant: sccache | |
- uses: lukka/run-cmake@af1be47fd7c933593f687731bc6fdbee024d3ff4 # v10.8 | |
with: | |
configurePreset: "continuous-integration" | |
buildPreset: "continuous-integration" | |
testPreset: "continuous-integration" | |
configurePresetAdditionalArgs: "['-DCMAKE_C_COMPILER_LAUNCHER=sccache', '-DCMAKE_CXX_COMPILER_LAUNCHER=sccache']" | |
- name: Upload test logs | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2 | |
with: | |
name: test-logs | |
path: build/continuous-integration/Testing/Temporary/ | |
embedded_build: | |
name: Embedded Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
configuration: ["RelWithDebInfo"] | |
gcc: ["10.3-2021.10"] | |
target: ["stm32f407", "stm32f767", "stm32f746"] | |
include: | |
- gcc: "8-2019-q3" | |
configuration: "RelWithDebInfo" | |
target: "stm32f767" | |
- gcc: "9-2020-q2" | |
configuration: "RelWithDebInfo" | |
target: "stm32f767" | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
persist-credentials: false | |
- name: Install GNU Arm Embedded Toolchain ${{ matrix.gcc }} | |
uses: carlosperate/arm-none-eabi-gcc-action@0cc83a7330501be1848887e2966aaceb49a4bb12 # v1.9.1 | |
with: | |
release: ${{ matrix.gcc }} | |
- uses: hendrikmuhs/ccache-action@ed74d11c0b343532753ecead8a951bb09bb34bc9 # v1.2.14 | |
with: | |
key: ${{ matrix.gcc }}-${{ matrix.configuration }} | |
- run: | | |
sudo apt-get update && sudo apt-get install --no-install-recommends ninja-build xsltproc | |
echo "::add-matcher::.github/matchers/gcc-problem-matcher.json" | |
cmake --preset host -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache | |
cmake --build --preset host-${{ matrix.configuration }} | |
cmake --preset ${{ matrix.target }} -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache | |
cmake --build --preset ${{ matrix.target }}-${{ matrix.configuration }} |