From e061cd54f016f9091c01f4e93967543e94df56e1 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Wed, 16 Mar 2022 16:11:37 +0900 Subject: [PATCH 1/5] [TEST] Adjust path for zephyr-testing --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index 71f54a88d01..ef7d6a45662 100644 --- a/west.yml +++ b/west.yml @@ -364,6 +364,6 @@ manifest: revision: 10023645a0e6cb7ce23fcd7fd3dbac9f18df6234 self: - path: zephyr + path: zephyr-testing west-commands: scripts/west-commands.yml import: submanifests From 777e6b06f2ce0e918a03f31c90015b76021a392c Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Fri, 21 Oct 2022 02:30:55 +0900 Subject: [PATCH 2/5] [TEST] Print runner information --- .github/workflows/twister.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/twister.yaml b/.github/workflows/twister.yaml index 4b414a7c9b4..5fc25b41e97 100644 --- a/.github/workflows/twister.yaml +++ b/.github/workflows/twister.yaml @@ -49,6 +49,14 @@ jobs: # GitHub comes up with a fundamental fix for this problem. git config --global --add safe.directory ${GITHUB_WORKSPACE} + - name: Print runner information + run: | + set -x + lscpu + lsmem + lsblk + df -h + - name: Clone cached Zephyr repository if: github.event_name == 'pull_request_target' continue-on-error: true From 742a4df2cb8c323c75b8d2518f754ba24f109d51 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Tue, 1 Nov 2022 15:53:26 +0900 Subject: [PATCH 3/5] [TEST] Use test-runner --- .github/workflows/bsim-tests.yaml | 2 +- .github/workflows/clang.yaml | 2 +- .github/workflows/codecov.yaml | 2 +- .github/workflows/twister.yaml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bsim-tests.yaml b/.github/workflows/bsim-tests.yaml index 435d61c3085..53059652fb4 100644 --- a/.github/workflows/bsim-tests.yaml +++ b/.github/workflows/bsim-tests.yaml @@ -28,7 +28,7 @@ concurrency: jobs: bsim-test: if: github.repository_owner == 'zephyrproject-rtos' - runs-on: zephyr-runner-linux-x64-4xlarge + runs-on: test-runner-linux-x64-4xlarge container: image: ghcr.io/zephyrproject-rtos/ci:v0.26.4 options: '--entrypoint /bin/bash' diff --git a/.github/workflows/clang.yaml b/.github/workflows/clang.yaml index 9108d31b45b..c1b014688e0 100644 --- a/.github/workflows/clang.yaml +++ b/.github/workflows/clang.yaml @@ -9,7 +9,7 @@ concurrency: jobs: clang-build: if: github.repository_owner == 'zephyrproject-rtos' - runs-on: zephyr-runner-linux-x64-4xlarge + runs-on: test-runner-linux-x64-4xlarge container: image: ghcr.io/zephyrproject-rtos/ci:v0.26.4 options: '--entrypoint /bin/bash' diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml index 0bf6f3ccfd2..9093fbe5a24 100644 --- a/.github/workflows/codecov.yaml +++ b/.github/workflows/codecov.yaml @@ -11,7 +11,7 @@ concurrency: jobs: codecov: if: github.repository == 'zephyrproject-rtos/zephyr' - runs-on: zephyr-runner-linux-x64-4xlarge + runs-on: test-runner-linux-x64-4xlarge container: image: ghcr.io/zephyrproject-rtos/ci:v0.26.4 options: '--entrypoint /bin/bash' diff --git a/.github/workflows/twister.yaml b/.github/workflows/twister.yaml index 5fc25b41e97..db8f95297dc 100644 --- a/.github/workflows/twister.yaml +++ b/.github/workflows/twister.yaml @@ -20,7 +20,7 @@ concurrency: jobs: twister-build-prep: if: github.repository_owner == 'zephyrproject-rtos' - runs-on: zephyr-runner-linux-x64-4xlarge + runs-on: test-runner-linux-x64-4xlarge container: image: ghcr.io/zephyrproject-rtos/ci:v0.26.4 options: '--entrypoint /bin/bash' @@ -124,7 +124,7 @@ jobs: echo "fullrun=${TWISTER_FULL}" >> $GITHUB_OUTPUT twister-build: - runs-on: zephyr-runner-linux-x64-4xlarge + runs-on: test-runner-linux-x64-4xlarge needs: twister-build-prep if: needs.twister-build-prep.outputs.size != 0 container: From bd8f10f26ab1c150a41d9c362f1b6d51ad90b053 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Fri, 8 Sep 2023 09:39:36 +0200 Subject: [PATCH 4/5] action: manifest: Use Git tree checkout Signed-off-by: Carles Cufi --- .github/workflows/manifest.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/manifest.yml b/.github/workflows/manifest.yml index 1ea0031fb56..1531dc50916 100644 --- a/.github/workflows/manifest.yml +++ b/.github/workflows/manifest.yml @@ -15,12 +15,23 @@ jobs: fetch-depth: 0 persist-credentials: false + - name: west setup + env: + BASE_REF: ${{ github.base_ref }} + working-directory: zephyrproject/zephyr + run: | + pip3 install west + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + west init -l . || true + - name: Manifest - uses: zephyrproject-rtos/action-manifest@a6d0c6e52bbbb7d6df23ceb42842edcb4582b8dc + uses: carlescufi/action-manifest@use-tree-checkout with: github-token: ${{ secrets.ZB_GITHUB_TOKEN }} manifest-path: 'west.yml' checkout-path: 'zephyrproject/zephyr' + use-tree-checkout: 'true' label-prefix: 'manifest-' verbosity-level: '1' labels: 'manifest' From d368b79427336490c34b226c6caf663ac1a874f4 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Fri, 8 Sep 2023 09:45:55 +0200 Subject: [PATCH 5/5] west: update nxp hal Update the hal. Signed-off-by: Carles Cufi --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index ef7d6a45662..bb197bcfffc 100644 --- a/west.yml +++ b/west.yml @@ -193,7 +193,7 @@ manifest: groups: - hal - name: hal_nxp - revision: 0ef57e8ee40f02f1dce4b4ad666c55885f941703 + revision: pull/270/head path: modules/hal/nxp groups: - hal