mirror of
https://github.com/dragonflydb/dragonfly
synced 2024-11-21 23:19:53 +00:00
test: Run slow tests in regression runs (again^2) (#2623)
* test: Run slow tests in regression runs (again^2) * better comment
This commit is contained in:
parent
1ef8795611
commit
ebe83c820c
6
.github/workflows/regression-tests.yml
vendored
6
.github/workflows/regression-tests.yml
vendored
@ -41,7 +41,11 @@ jobs:
|
||||
gspace-secret: ${{ secrets.GSPACES_BOT_DF_BUILD }}
|
||||
run-only-on-ubuntu-latest: false
|
||||
build-folder-name: build
|
||||
filter: ${{ matrix.build-type == 'Release' && '' || 'not opt_only' }}
|
||||
# This expression serves as a ternary operator, i.e. if the condition holds it returns
|
||||
# 'not NON_EXISTING_MARK' otherwise not opt_only.
|
||||
# Do not filter anything in Release, but do not run opt_only in Debug. Unfortunately an
|
||||
# empty string creates a 'false' expression, so we use a non existing mark
|
||||
filter: ${{ matrix.build-type == 'Release' && 'not NON_EXISTING_MARK' || 'not opt_only' }}
|
||||
|
||||
- name: Upload logs on failure
|
||||
if: failure()
|
||||
|
Loading…
Reference in New Issue
Block a user