Skip to content

Commit c4eec79

Browse files
committed
blah
1 parent 0bcf71e commit c4eec79

File tree

1 file changed

+7
-26
lines changed

1 file changed

+7
-26
lines changed

.github/workflows/clang.yaml

Lines changed: 7 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,22 @@ concurrency:
88

99
jobs:
1010
clang-build:
11-
if: github.repository_owner == 'zephyrproject-rtos'
12-
runs-on:
13-
group: zephyr-runner-v2-linux-x64-4xlarge
11+
runs-on: ubuntu-latest
1412
container:
15-
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.26.9.20240223
13+
image: ghcr.io/zephyrproject-rtos/ci:v0.26.11
1614
options: '--entrypoint /bin/bash'
15+
volumes:
16+
- /repo-cache/zephyrproject:/github/cache/zephyrproject
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
platform: ["native_sim"]
20+
platform: ["native_sim/native"]
21+
subset: [1, 2, 3, 4, 5]
2122
env:
22-
CCACHE_DIR: /node-cache/ccache-zephyr
23-
CCACHE_REMOTE_STORAGE: "redis://cache-*.keydb-cache.svc.cluster.local|shards=1,2,3"
24-
CCACHE_REMOTE_ONLY: "true"
2523
LLVM_TOOLCHAIN_PATH: /usr/lib/llvm-16
2624
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
2725
BASE_REF: ${{ github.base_ref }}
26+
MATRIX_SIZE: 5
2827
outputs:
2928
report_needed: ${{ steps.twister.outputs.report_needed }}
3029
steps:
@@ -36,12 +35,6 @@ jobs:
3635
# GitHub comes up with a fundamental fix for this problem.
3736
git config --global --add safe.directory ${GITHUB_WORKSPACE}
3837
39-
- name: Print cloud service information
40-
run: |
41-
echo "ZEPHYR_RUNNER_CLOUD_PROVIDER = ${ZEPHYR_RUNNER_CLOUD_PROVIDER}"
42-
echo "ZEPHYR_RUNNER_CLOUD_NODE = ${ZEPHYR_RUNNER_CLOUD_NODE}"
43-
echo "ZEPHYR_RUNNER_CLOUD_POD = ${ZEPHYR_RUNNER_CLOUD_POD}"
44-
4538
- name: Clone cached Zephyr repository
4639
continue-on-error: true
4740
run: |
@@ -82,13 +75,6 @@ jobs:
8275
gcc --version
8376
ls -la
8477
85-
- name: Set up ccache
86-
run: |
87-
mkdir -p ${CCACHE_DIR}
88-
ccache -M 10G
89-
ccache -p
90-
ccache -z -s -vv
91-
9278
- name: Update BabbleSim to manifest revision
9379
run: |
9480
export BSIM_VERSION=$( west list bsim -f {revision} )
@@ -118,11 +104,6 @@ jobs:
118104
echo "report_needed=0" >> $GITHUB_OUTPUT
119105
fi
120106
121-
- name: Print ccache stats
122-
if: always()
123-
run: |
124-
ccache -s -vv
125-
126107
- name: Upload Unit Test Results
127108
if: always() && steps.twister.outputs.report_needed != 0
128109
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)