ci: scorecard: Remove non-main branch #774
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: Compilation only checks | |
on: [push, pull_request] | |
jobs: | |
standards: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
compiler: ["clang-18", "gcc-13"] | |
c_standard: ["99", "11"] | |
c_extensions: ["ON", "OFF"] | |
steps: | |
- name: Checkout code including full history and submodules | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Install dependencies from APT repository | |
run: | | |
sudo apt-get update | |
sudo apt-get install cmake libcunit1-dev ninja-build unzip wget | |
- name: Build all binaries | |
run: | | |
tools/ci/run_ci.sh \ | |
--run-build \ | |
--c-standard ${{ matrix.c_standard }} \ | |
--c-extensions ${{ matrix.c_extensions }} | |
env: | |
CC: ${{ matrix.compiler }} | |
standalone-examples: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
example: ["bootstrap_server", "client", "lightclient", "server"] | |
steps: | |
- name: Checkout code including full history and submodules | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Install dependencies from APT repository | |
run: | | |
sudo apt-get update | |
sudo apt-get install cmake libcunit1-dev ninja-build unzip wget | |
- name: Build examples as stand-alone projects | |
run: | | |
tools/ci/run_ci.sh \ | |
--run-clean \ | |
--run-build \ | |
--source-directory examples/${{ matrix.example }} \ | |
--build-directory wakaama-build-${{ matrix.example }} |