Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
9894ce5f
Unverified
Commit
9894ce5f
authored
Jul 05, 2021
by
Oran Agra
Committed by
GitHub
Jul 05, 2021
Browse files
add missing skips to daily cycle (#9196)
minor cleanups.
parent
7103367a
Changes
1
Show whitespace changes
Inline
Side-by-side
.github/workflows/daily.yml
View file @
9894ce5f
...
@@ -10,10 +10,10 @@ on:
...
@@ -10,10 +10,10 @@ on:
workflow_dispatch
:
workflow_dispatch
:
inputs
:
inputs
:
skipjobs
:
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'
default
:
'
valgrind,tls,freebsd,macos,alpine,32bit'
skiptests
:
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'
default
:
'
redis,modules,sentinel,cluster'
test_args
:
test_args
:
description
:
'
extra
test
arguments'
description
:
'
extra
test
arguments'
...
@@ -392,6 +392,7 @@ jobs:
...
@@ -392,6 +392,7 @@ jobs:
if
:
true
&& !contains(github.event.inputs.skiptests, 'modules')
if
:
true
&& !contains(github.event.inputs.skiptests, 'modules')
run
:
./runtest-moduleapi --verbose ${{github.event.inputs.test_args}}
run
:
./runtest-moduleapi --verbose ${{github.event.inputs.test_args}}
-
name
:
sentinel tests
-
name
:
sentinel tests
if
:
true
&& !contains(github.event.inputs.skiptests, 'sentinel')
run
:
./runtest-sentinel ${{github.event.inputs.cluster_test_args}}
run
:
./runtest-sentinel ${{github.event.inputs.cluster_test_args}}
-
name
:
cluster tests
-
name
:
cluster tests
if
:
true
&& !contains(github.event.inputs.skiptests, 'cluster')
if
:
true
&& !contains(github.event.inputs.skiptests, 'cluster')
...
@@ -451,6 +452,7 @@ jobs:
...
@@ -451,6 +452,7 @@ jobs:
if
:
true
&& !contains(github.event.inputs.skiptests, 'modules')
if
:
true
&& !contains(github.event.inputs.skiptests, 'modules')
run
:
./runtest-moduleapi --verbose ${{github.event.inputs.test_args}}
run
:
./runtest-moduleapi --verbose ${{github.event.inputs.test_args}}
-
name
:
sentinel tests
-
name
:
sentinel tests
if
:
true
&& !contains(github.event.inputs.skiptests, 'sentinel')
run
:
./runtest-sentinel ${{github.event.inputs.cluster_test_args}}
run
:
./runtest-sentinel ${{github.event.inputs.cluster_test_args}}
-
name
:
cluster tests
-
name
:
cluster tests
if
:
true
&& !contains(github.event.inputs.skiptests, 'cluster')
if
:
true
&& !contains(github.event.inputs.skiptests, 'cluster')
...
@@ -483,6 +485,7 @@ jobs:
...
@@ -483,6 +485,7 @@ jobs:
if
:
true
&& !contains(github.event.inputs.skiptests, 'modules')
if
:
true
&& !contains(github.event.inputs.skiptests, 'modules')
run
:
./runtest-moduleapi --verbose ${{github.event.inputs.test_args}}
run
:
./runtest-moduleapi --verbose ${{github.event.inputs.test_args}}
-
name
:
sentinel tests
-
name
:
sentinel tests
if
:
true
&& !contains(github.event.inputs.skiptests, 'sentinel')
run
:
./runtest-sentinel ${{github.event.inputs.cluster_test_args}}
run
:
./runtest-sentinel ${{github.event.inputs.cluster_test_args}}
-
name
:
cluster tests
-
name
:
cluster tests
if
:
true
&& !contains(github.event.inputs.skiptests, 'cluster')
if
:
true
&& !contains(github.event.inputs.skiptests, 'cluster')
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment