summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2021-07-05 08:46:19 +0300
committerGitHub <noreply@github.com>2021-07-05 08:46:19 +0300
commit9894ce5fc40651714f17bdbce45f8597ca7194ff (patch)
tree91a555a40ef043cb75bf51e1de0ed0aee97bf35c /.github
parent7103367ad44b4241e59a709771cb464aa2a86b20 (diff)
downloadredis-9894ce5fc40651714f17bdbce45f8597ca7194ff.tar.gz
add missing skips to daily cycle (#9196)
minor cleanups.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/daily.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml
index 191b697bf..ceb82f5c1 100644
--- a/.github/workflows/daily.yml
+++ b/.github/workflows/daily.yml
@@ -10,10 +10,10 @@ on:
workflow_dispatch:
inputs:
skipjobs:
- description: 'jobs to skip (delete the ones you wanna keep)'
+ description: 'jobs to skip (delete the ones you wanna keep, do not leave empty)'
default: 'valgrind,tls,freebsd,macos,alpine,32bit'
skiptests:
- description: 'tests to skip (delete the ones you wanna keep)'
+ description: 'tests to skip (delete the ones you wanna keep, do not leave empty)'
default: 'redis,modules,sentinel,cluster'
test_args:
description: 'extra test arguments'
@@ -392,6 +392,7 @@ jobs:
if: true && !contains(github.event.inputs.skiptests, 'modules')
run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}}
- name: sentinel tests
+ if: true && !contains(github.event.inputs.skiptests, 'sentinel')
run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}}
- name: cluster tests
if: true && !contains(github.event.inputs.skiptests, 'cluster')
@@ -451,6 +452,7 @@ jobs:
if: true && !contains(github.event.inputs.skiptests, 'modules')
run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}}
- name: sentinel tests
+ if: true && !contains(github.event.inputs.skiptests, 'sentinel')
run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}}
- name: cluster tests
if: true && !contains(github.event.inputs.skiptests, 'cluster')
@@ -483,6 +485,7 @@ jobs:
if: true && !contains(github.event.inputs.skiptests, 'modules')
run: ./runtest-moduleapi --verbose ${{github.event.inputs.test_args}}
- name: sentinel tests
+ if: true && !contains(github.event.inputs.skiptests, 'sentinel')
run: ./runtest-sentinel ${{github.event.inputs.cluster_test_args}}
- name: cluster tests
if: true && !contains(github.event.inputs.skiptests, 'cluster')