diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 788d93c1..667ad546 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ on: zephyr-ref: description: 'Zephyr Ref (branch, tag, SHA, ...)' required: true - default: collab-sdk-dev + default: main host: description: 'Host' type: choice @@ -97,7 +97,7 @@ env: BUG_URL: 'https://github.com/zephyrproject-rtos/sdk-ng/issues' BUNDLE_NAME: Zephyr SDK BUNDLE_PREFIX: zephyr-sdk - ZEPHYR_REF: collab-sdk-dev + ZEPHYR_REF: main jobs: # Setup @@ -1562,7 +1562,7 @@ jobs: fail-fast: false matrix: testenv: ${{ fromJSON(needs.setup.outputs.testenvs) }} - toolchain: [ gnu, llvm ] + toolchain: [ gnu ] subset: [ 1, 2, 3 ] env: @@ -1715,7 +1715,7 @@ jobs: popd else if [ "${{ matrix.toolchain }}" == "gnu" ]; then - ./setup.sh -t all -h -c + ./setup.sh -t all -h -c -o elif [ "${{ matrix.toolchain }}" == "llvm" ]; then ./setup.sh -l -h -c fi @@ -1993,7 +1993,11 @@ jobs: fi # Set toolchain variant - export ZEPHYR_TOOLCHAIN_VARIANT=zephyr/${{ matrix.toolchain }} + if [ "${{ matrix.toolchain }}" == "gnu" ]; then + export ZEPHYR_TOOLCHAIN_VARIANT=zephyr + else + export ZEPHYR_TOOLCHAIN_VARIANT=zephyr/${{ matrix.toolchain }} + fi # Run tests with twister TWISTER="${ZEPHYR_ROOT}/scripts/twister" diff --git a/.github/workflows/twister.yml b/.github/workflows/twister.yml index 2e45b0a2..53368a60 100644 --- a/.github/workflows/twister.yml +++ b/.github/workflows/twister.yml @@ -36,7 +36,7 @@ on: zephyr-ref: description: 'Zephyr Ref (branch, tag, SHA ...)' required: true - default: collab-sdk-dev + default: main twister-mode: description: 'Twister Mode' type: choice @@ -284,7 +284,7 @@ jobs: popd else if [ "${{ github.event.inputs.sdk-toolchain }}" == "gnu" ]; then - ./setup.sh -t all -h -c + ./setup.sh -t all -h -c -o elif [ "${{ github.event.inputs.sdk-toolchain }}" == "llvm" ]; then ./setup.sh -l -h -c fi