| name: Build with Clang/LLVM |
| on: |
| push: |
| branches: |
| - main |
| - v*-branch |
| - collab-* |
| permissions: |
| contents: read |
| |
| concurrency: |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }} |
| cancel-in-progress: true |
| |
| jobs: |
| clang-build: |
| if: github.repository_owner == 'zephyrproject-rtos' |
| runs-on: |
| group: zephyr-runner-v2-linux-x64-4xlarge |
| container: |
| image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.28.6.20251003 |
| options: '--entrypoint /bin/bash' |
| strategy: |
| fail-fast: false |
| matrix: |
| subset: [1, 2] |
| env: |
| CCACHE_DIR: /node-cache/ccache-zephyr |
| CCACHE_REMOTE_STORAGE: "redis://cache-*.keydb-cache.svc.cluster.local|shards=1,2,3" |
| CCACHE_REMOTE_ONLY: "true" |
| CCACHE_IGNOREOPTIONS: '-specs=* --specs=*' |
| LLVM_TOOLCHAIN_PATH: /usr/lib/llvm-20 |
| BASE_REF: ${{ github.base_ref }} |
| steps: |
| - name: Apply container owner mismatch workaround |
| run: | |
| # FIXME: The owner UID of the GITHUB_WORKSPACE directory may not |
| # match the container user UID because of the way GitHub |
| # Actions runner is implemented. Remove this workaround when |
| # GitHub comes up with a fundamental fix for this problem. |
| git config --global --add safe.directory ${GITHUB_WORKSPACE} |
| |
| - name: Print cloud service information |
| run: | |
| echo "ZEPHYR_RUNNER_CLOUD_PROVIDER = ${ZEPHYR_RUNNER_CLOUD_PROVIDER}" |
| echo "ZEPHYR_RUNNER_CLOUD_NODE = ${ZEPHYR_RUNNER_CLOUD_NODE}" |
| echo "ZEPHYR_RUNNER_CLOUD_POD = ${ZEPHYR_RUNNER_CLOUD_POD}" |
| |
| - name: Clone cached Zephyr repository |
| continue-on-error: true |
| run: | |
| git clone --shared /repo-cache/zephyrproject/zephyr . |
| git remote set-url origin ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} |
| |
| - name: Checkout |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 |
| with: |
| fetch-depth: 0 |
| persist-credentials: false |
| |
| - name: Environment Setup |
| run: | |
| echo "$HOME/.local/bin" >> $GITHUB_PATH |
| git config --global user.email "bot@zephyrproject.org" |
| git config --global user.name "Zephyr Bot" |
| rm -fr ".git/rebase-apply" |
| rm -fr ".git/rebase-merge" |
| git clean -f -d |
| git log --pretty=oneline | head -n 10 |
| west init -l . || true |
| west config --global update.narrow true |
| west config manifest.group-filter -- +ci,+optional |
| # In some cases modules are left in a state where they can't be |
| # updated (i.e. when we cancel a job and the builder is killed), |
| # So first retry to update, if that does not work, remove all modules |
| # and start over. (Workaround until we implement more robust module |
| # west caching). |
| west update --path-cache /repo-cache/zephyrproject 2>&1 1> west.log || west update --path-cache /repo-cache/zephyrproject 2>&1 1> west2.log || ( rm -rf ../modules ../bootloader ../tools && west update --path-cache /repo-cache/zephyrproject) |
| |
| echo "ZEPHYR_SDK_INSTALL_DIR=/opt/toolchains/zephyr-sdk-$( cat SDK_VERSION )" >> $GITHUB_ENV |
| |
| - name: Check Environment |
| run: | |
| cmake --version |
| ${LLVM_TOOLCHAIN_PATH}/bin/clang --version |
| gcc --version |
| ls -la |
| |
| - name: Install Python packages |
| run: | |
| pip install -r scripts/requirements-actions.txt --require-hashes |
| |
| - name: Set up ccache |
| run: | |
| mkdir -p ${CCACHE_DIR} |
| ccache -M 10G |
| ccache -p |
| ccache -z -s -vv |
| |
| - name: Update BabbleSim to manifest revision |
| run: | |
| export BSIM_VERSION=$( west list bsim -f {revision} ) |
| echo "Manifest points to bsim sha $BSIM_VERSION" |
| cd /opt/bsim_west/bsim |
| git fetch -n origin ${BSIM_VERSION} |
| git -c advice.detachedHead=false checkout ${BSIM_VERSION} |
| west update |
| make everything -s -j 8 |
| |
| - name: Run Tests with Twister |
| id: twister |
| run: | |
| export ZEPHYR_BASE=${PWD} |
| export ZEPHYR_TOOLCHAIN_VARIANT=llvm |
| |
| ./scripts/twister -p native_sim --force-color --inline-logs -M -N -v --retry-failed 2 \ |
| -T tests --subset ${{matrix.subset}}/2 -j 16 |
| |
| - name: Print ccache stats |
| if: always() |
| run: | |
| ccache -s -vv |
| |
| - name: Upload Unit Test Results |
| if: always() |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 |
| with: |
| name: Unit Test Results (Subset ${{ matrix.subset }}) |
| path: | |
| twister-out/twister.xml |
| twister-out/twister.json |
| if-no-files-found: ignore |
| |
| clang-build-results: |
| name: "Publish Unit Tests Results" |
| needs: clang-build |
| runs-on: ubuntu-24.04 |
| permissions: |
| checks: write # to create GitHub annotations |
| if: (success() || failure()) |
| steps: |
| - name: Checkout |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 |
| with: |
| fetch-depth: 0 |
| persist-credentials: false |
| |
| - name: Download Artifacts |
| uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 |
| with: |
| path: artifacts |
| |
| - name: Set up Python |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 |
| with: |
| python-version: 3.12 |
| cache: pip |
| cache-dependency-path: scripts/requirements-actions.txt |
| |
| - name: Install Python packages |
| run: | |
| pip install -r scripts/requirements-actions.txt --require-hashes |
| |
| - name: Merge Test Results |
| run: | |
| junitparser merge --glob 'artifacts/*/twister.xml' 'artifacts/*/*/twister.xml' junit.xml |
| junit2html junit.xml junit-clang.html |
| |
| - name: Upload Unit Test Results in HTML |
| if: always() |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 |
| with: |
| name: HTML Unit Test Results |
| if-no-files-found: ignore |
| path: | |
| junit-clang.html |
| |
| - name: Publish Unit Test Results |
| uses: EnricoMi/publish-unit-test-result-action@3a74b2957438d0b6e2e61d67b05318aa25c9e6c6 # v2.20.0 |
| if: always() |
| with: |
| check_name: Unit Test Results |
| files: "**/twister.xml" |
| comment_mode: off |