ci: twister: for correctness, rename DAILY -> WEEKLY
We run on a weekly basis, not daily. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
088670d605
commit
ba5330e2ac
1 changed files with 3 additions and 3 deletions
6
.github/workflows/twister.yaml
vendored
6
.github/workflows/twister.yaml
vendored
|
@ -45,7 +45,7 @@ jobs:
|
||||||
BSIM_OUT_PATH: /opt/bsim/
|
BSIM_OUT_PATH: /opt/bsim/
|
||||||
BSIM_COMPONENTS_PATH: /opt/bsim/components
|
BSIM_COMPONENTS_PATH: /opt/bsim/components
|
||||||
TWISTER_COMMON: '--no-detailed-test-id --force-color --inline-logs -v -N -M --retry-failed 3 --timeout-multiplier 2 '
|
TWISTER_COMMON: '--no-detailed-test-id --force-color --inline-logs -v -N -M --retry-failed 3 --timeout-multiplier 2 '
|
||||||
DAILY_OPTIONS: ' -M --build-only --all --show-footprint --report-filtered'
|
WEEKLY_OPTIONS: ' -M --build-only --all --show-footprint --report-filtered'
|
||||||
PR_OPTIONS: ' --clobber-output --integration'
|
PR_OPTIONS: ' --clobber-output --integration'
|
||||||
PUSH_OPTIONS: ' --clobber-output -M --show-footprint --report-filtered'
|
PUSH_OPTIONS: ' --clobber-output -M --show-footprint --report-filtered'
|
||||||
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
|
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
|
||||||
|
@ -163,11 +163,11 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
export ZEPHYR_BASE=${PWD}
|
export ZEPHYR_BASE=${PWD}
|
||||||
export ZEPHYR_TOOLCHAIN_VARIANT=zephyr
|
export ZEPHYR_TOOLCHAIN_VARIANT=zephyr
|
||||||
./scripts/twister --subset ${{matrix.subset}}/${{ strategy.job-total }} ${TWISTER_COMMON} ${DAILY_OPTIONS}
|
./scripts/twister --subset ${{matrix.subset}}/${{ strategy.job-total }} ${TWISTER_COMMON} ${WEEKLY_OPTIONS}
|
||||||
if [ "${{matrix.subset}}" = "1" ]; then
|
if [ "${{matrix.subset}}" = "1" ]; then
|
||||||
./scripts/zephyr_module.py --twister-out module_tests.args
|
./scripts/zephyr_module.py --twister-out module_tests.args
|
||||||
if [ -s module_tests.args ]; then
|
if [ -s module_tests.args ]; then
|
||||||
./scripts/twister +module_tests.args --outdir module_tests ${TWISTER_COMMON} ${DAILY_OPTIONS}
|
./scripts/twister +module_tests.args --outdir module_tests ${TWISTER_COMMON} ${WEEKLY_OPTIONS}
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue