Skip to content

Commit e0eb2db

Browse files
committed
CI: setup_ci should run before bootstrap.sh
On the "nightly" runs, the test suite did not actually use CrateDB nightly builds, but used the version defined in `versions.cfg` instead.
1 parent f34e70e commit e0eb2db

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/nightly.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
- name: Invoke tests
3737
run: |
3838
39-
# Bootstrap environment.
40-
source bootstrap.sh
41-
4239
# Propagate build matrix information.
4340
./devtools/setup_ci.sh
4441
42+
# Bootstrap environment.
43+
source bootstrap.sh
44+
4545
# Invoke validation tasks.
4646
flake8 src bin
4747
coverage run bin/test -vv1

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
- name: Invoke tests
3838
run: |
3939
40-
# Bootstrap environment.
41-
source bootstrap.sh
42-
4340
# Propagate build matrix information.
4441
./devtools/setup_ci.sh
4542
43+
# Bootstrap environment.
44+
source bootstrap.sh
45+
4646
# Invoke validation tasks.
4747
flake8 src bin
4848
coverage run bin/test -vv1

0 commit comments

Comments
 (0)