ci: codecov: Use zephyr-runner v2
This commit updates the codecov workflow to use the new zephyr-runner v2 CI runner deployment. It also updates the workflow to use the `ci-repo-cache` Docker image, which includes the Zephyr repository cache, because the node level repository cache is no longer available in the zephyr-runner v2. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
parent
c1bd5a613f
commit
354e290a23
15
.github/workflows/codecov.yaml
vendored
15
.github/workflows/codecov.yaml
vendored
|
@ -11,12 +11,11 @@ concurrency:
|
||||||
jobs:
|
jobs:
|
||||||
codecov:
|
codecov:
|
||||||
if: github.repository_owner == 'zephyrproject-rtos'
|
if: github.repository_owner == 'zephyrproject-rtos'
|
||||||
runs-on: zephyr-runner-linux-x64-4xlarge
|
runs-on:
|
||||||
|
group: zephyr-runner-v2-linux-x64-4xlarge
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/zephyrproject-rtos/ci:v0.26.7
|
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.26.9.20240223
|
||||||
options: '--entrypoint /bin/bash'
|
options: '--entrypoint /bin/bash'
|
||||||
volumes:
|
|
||||||
- /repo-cache/zephyrproject:/github/cache/zephyrproject
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -39,6 +38,12 @@ jobs:
|
||||||
# GitHub comes up with a fundamental fix for this problem.
|
# GitHub comes up with a fundamental fix for this problem.
|
||||||
git config --global --add safe.directory ${GITHUB_WORKSPACE}
|
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: Update PATH for west
|
- name: Update PATH for west
|
||||||
run: |
|
run: |
|
||||||
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
||||||
|
@ -46,7 +51,7 @@ jobs:
|
||||||
- name: Clone cached Zephyr repository
|
- name: Clone cached Zephyr repository
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
git clone --shared /github/cache/zephyrproject/zephyr .
|
git clone --shared /repo-cache/zephyrproject/zephyr .
|
||||||
git remote set-url origin ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}
|
git remote set-url origin ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}
|
||||||
|
|
||||||
- name: checkout
|
- name: checkout
|
||||||
|
|
Loading…
Reference in a new issue