We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d920de commit a72fed7Copy full SHA for a72fed7
.github/workflows/ci.yml
@@ -4,6 +4,8 @@ on:
4
push:
5
pull_request:
6
workflow_dispatch:
7
+ schedule:
8
+ - cron: "35 5 * * *" # 5:35 UTC which is 0:35 ET
9
10
jobs:
11
build-containers:
ci/actions-full-test.sh
@@ -33,6 +33,19 @@ main() {
33
34
fi
35
36
+ # If we are running a nightly test just run the verify tests.
37
+ # Otherwise skip the verify test script because it takes so long.
38
+ if [ "${GITHUB_EVENT_NAME}" == "schedule" ]; then
39
+ args+=(
40
+ --run-only
41
+ 1017
42
+ )
43
+ else
44
+ skip+=(
45
46
47
+ fi
48
+
49
echo python3 t/run-fio-tests.py --skip "${skip[@]}" "${args[@]}"
50
python3 t/run-fio-tests.py --skip "${skip[@]}" "${args[@]}"
51
make -C doc html
0 commit comments