We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc838d commit 6507371Copy full SHA for 6507371
.github/workflows/build.yml
@@ -4,10 +4,18 @@ on: [push, pull_request]
4
5
jobs:
6
build:
7
- runs-on: ubuntu-latest
8
- container: zephyrprojectrtos/ci:latest
+ runs-on:
+ group: zephyr-runner-v2-linux-x64-4xlarge
9
+ container:
10
+ image: ghcr.io/zephyrproject-rtos/ci-repo-cache:latest
11
+ options: '--entrypoint /bin/bash'
12
env:
13
CMAKE_PREFIX_PATH: /opt/toolchains
14
+ CCACHE_DIR: /node-cache/ccache-zephyr
15
+ CCACHE_REMOTE_STORAGE: "redis://cache-*.keydb-cache.svc.cluster.local|shards=1,2,3"
16
+ LLVM_TOOLCHAIN_PATH: /usr/lib/llvm-16
17
+ COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
18
+ BASE_REF: ${{ github.base_ref }}
19
steps:
20
- name: Checkout
21
uses: actions/checkout@v2
0 commit comments