Lines Matching +full:- +full:- +full:oneline

18 …  if: github.repository_owner == 'zephyrproject-rtos' && github.event_name == 'pull_request_target'
19 runs-on:
20 group: zephyr-runner-v2-linux-x64-4xlarge
22 image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.27.4.20241026
23 options: '--entrypoint /bin/bash'
25 subset: ${{ steps.output-services.outputs.subset }}
26 size: ${{ steps.output-services.outputs.size }}
27 fullrun: ${{ steps.output-services.outputs.fullrun }}
38 - name: Apply container owner mismatch workaround
44 git config --global --add safe.directory ${GITHUB_WORKSPACE}
46 - name: Print cloud service information
52 - name: Clone cached Zephyr repository
53 continue-on-error: true
55 git clone --shared /repo-cache/zephyrproject/zephyr .
56 git remote set-url origin ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}
58 - name: Checkout
62 fetch-depth: 0
63 persist-credentials: false
65 - name: Environment Setup
67 git config --global user.email "bot@zephyrproject.org"
68 git config --global user.name "Zephyr Bot"
69 rm -fr ".git/rebase-apply"
70 rm -fr ".git/rebase-merge"
72 git clean -f -d
73 git log --pretty=oneline | head -n 10
74 west init -l . || true
75 west config manifest.group-filter -- +ci,+optional
76 west config --global update.narrow true
77--path-cache /repo-cache/zephyrproject 2>&1 1> west.update.log || west update --path-cache /repo-c…
78 west forall -c 'git reset --hard HEAD'
80 … echo "ZEPHYR_SDK_INSTALL_DIR=/opt/toolchains/zephyr-sdk-$( cat SDK_VERSION )" >> $GITHUB_ENV
82 - name: Generate Test Plan with Twister
83 id: test-plan
87 …python3 ./scripts/ci/test_plan.py -c origin/${BASE_REF}.. --no-detailed-test-id --pull-request -t …
88 if [ -s .testplan ]; then
93 rm -f testplan.json .testplan
95 - name: Determine matrix size
96 id: output-services
98 if [ -n "${TWISTER_NODES}" ]; then
99 subset="[$(seq -s',' 1 ${TWISTER_NODES})]"
101 subset="[$(seq -s',' 1 ${MATRIX_SIZE})]"
110 …if: github.repository_owner == 'zephyrproject-rtos' && (github.event_name == 'push' || github.even…
111 runs-on: ubuntu-22.04
113 subset: ${{ steps.output-services.outputs.subset }}
114 size: ${{ steps.output-services.outputs.size }}
115 fullrun: ${{ steps.output-services.outputs.fullrun }}
126 - name: Print cloud service information
132 - name: Determine matrix size
133 id: output-services
136 subset="[$(seq -s',' 1 ${PUSH_MATRIX_SIZE})]"
138 …elif [ "${{github.event_name}}" = "schedule" -a "${{github.repository}}" = "zephyrproject-rtos/zep…
139 subset="[$(seq -s',' 1 ${DAILY_MATRIX_SIZE})]"