Skip to content

build(deps): bump github/codeql-action/upload-sarif #1454

build(deps): bump github/codeql-action/upload-sarif

build(deps): bump github/codeql-action/upload-sarif #1454

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2024-2026 Henrik Brix Andersen <henrik@brixandersen.dk>
#
# SPDX-License-Identifier: Apache-2.0
name: Build
on:
push:
pull_request:
schedule:
- cron: "0 2 * * *"
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-15, windows-2025]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
path: cannectivity
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: 3.12
- name: Setup Zephyr project
uses: zephyrproject-rtos/action-zephyr-setup@5ec39f5cba83346d83a836dfed1524270c660e28 # v1.0.14
with:
app-path: cannectivity
toolchains: arm-zephyr-eabi
ccache-cache-key: ${{ matrix.os }}
- name: Build firmware
working-directory: cannectivity
shell: bash
run: |
if [ "${{ runner.os }}" = "Windows" ]; then
EXTRA_TWISTER_FLAGS="--short-build-path -O/tmp/twister-out"
fi
west twister -T app -v --inline-logs --integration $EXTRA_TWISTER_FLAGS
- name: Run firmware tests
working-directory: cannectivity
if: startsWith(runner.os, 'Linux')
shell: bash
run: |
# Limit to one concurrent instance as the USBIP port is reused between instances
west twister -T app -v --inline-logs --platform native_sim/native/64 -j1
- name: Run tests
working-directory: cannectivity
shell: bash
run: |
if [ "${{ runner.os }}" = "Windows" ]; then
EXTRA_TWISTER_FLAGS="--short-build-path -O/tmp/twister-out"
fi
west twister -T tests -v --inline-logs --integration $EXTRA_TWISTER_FLAGS
- name: Print ccache stats
if: runner.os != 'Windows'
run: |
ccache -s -vv