Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ci/run_tests_pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ stages:
mavenPOMFile: "questdb/pom.xml"
javaHomeOption: "Path"
jdkDirectory: "$(JAVA_HOME)"
options: "-DskipTests -Pbuild-web-console$(CLIENT_PROFILE)"
options: "-DskipTests -Pbuild-web-console,build-binaries$(CLIENT_PROFILE)"
- script: |
python3 system_test/test.py run --repo ./questdb -v
displayName: "integration test"
Expand Down Expand Up @@ -307,7 +307,7 @@ stages:
mavenPOMFile: "questdb/pom.xml"
javaHomeOption: "Path"
jdkDirectory: "$(JAVA_HOME)"
options: "-DskipTests -Pbuild-web-console$(CLIENT_PROFILE)"
options: "-DskipTests -Pbuild-web-console,build-binaries$(CLIENT_PROFILE)"
- script: |
python3 system_test/test.py run --repo ./questdb TestQwpWsFuzz -v
displayName: "TestQwpWsFuzz"
Expand Down Expand Up @@ -404,7 +404,7 @@ stages:
mavenPOMFile: "questdb/pom.xml"
javaHomeOption: "Path"
jdkDirectory: "$(JAVA_HOME)"
options: "-DskipTests -Pbuild-web-console$(CLIENT_PROFILE)"
options: "-DskipTests -Pbuild-web-console,build-binaries$(CLIENT_PROFILE)"
- script: |
python3 system_test/test.py run --repo ./questdb TestQwpWsFuzz -v
displayName: "TestQwpWsFuzz"
Expand Down Expand Up @@ -457,7 +457,7 @@ stages:
inputs:
mavenPOMFile: "questdb/pom.xml"
jdkVersionOption: "default"
options: "-DskipTests -Pbuild-web-console$(CLIENT_PROFILE)"
options: "-DskipTests -Pbuild-web-console,build-binaries$(CLIENT_PROFILE)"
- script: |
set -euxo pipefail
cd questdb-rs
Expand Down
2 changes: 1 addition & 1 deletion ci/templates/clone_questdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# questdb-building job working whichever way questdb master flips next.
steps:
- script: |
git clone --depth 1 https://github.com/questdb/questdb.git
git clone --depth 1 --branch steve-rm-bins https://github.com/questdb/questdb.git
displayName: git clone questdb
- bash: |
# No `pipefail`: the version extraction is `sed ... | head -1`, and
Expand Down