Skip to content

Commit 8f77144

Browse files
committed
REVERT ME BEFORE MERGE: Disabled some CI test temporarily for faster CI runs
1 parent a46a0e8 commit 8f77144

File tree

3 files changed

+0
-63
lines changed

3 files changed

+0
-63
lines changed

ci/compile.yaml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ steps:
44
rustup default $(toolchain)
55
condition: ne(variables['toolchain'], '')
66
displayName: "Update and set Rust toolchain"
7-
- script: |
8-
python -m pip install --upgrade pip
9-
pip install numpy
10-
displayName: 'Install Python Dependencies'
117
- script: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DQUESTDB_TESTS_AND_EXAMPLES=ON
128
env:
139
JAVA_HOME: $(JAVA_HOME_11_X64)
@@ -16,11 +12,3 @@ steps:
1612
env:
1713
JAVA_HOME: $(JAVA_HOME_11_X64)
1814
displayName: "Make"
19-
- script: cmake -S . -B build_CXX20 -DCMAKE_BUILD_TYPE=Release -DQUESTDB_TESTS_AND_EXAMPLES=ON -DCMAKE_CXX_STANDARD=20
20-
env:
21-
JAVA_HOME: $(JAVA_HOME_11_X64)
22-
displayName: "Build Makefile with CMake"
23-
- script: cmake --build build_CXX20 --config Release
24-
env:
25-
JAVA_HOME: $(JAVA_HOME_11_X64)
26-
displayName: "Make"

ci/run_all_tests.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@ def main():
3636
exe_suffix = '.exe' if platform.system() == 'Windows' else ''
3737
test_line_sender_path = next(iter(
3838
build_dir.glob(f'**/test_line_sender{exe_suffix}')))
39-
build_cxx20_dir = pathlib.Path('build_CXX20')
40-
test_line_sender_path_CXX20 = next(iter(
41-
build_cxx20_dir.glob(f'**/test_line_sender{exe_suffix}')))
42-
43-
system_test_path = pathlib.Path('system_test') / 'test.py'
44-
#qdb_v = '8.2.3' # The version of QuestDB we'll test against.
4539

4640
run_cmd('cargo', 'test',
4741
'--', '--nocapture', cwd='questdb-rs')
@@ -53,9 +47,6 @@ def main():
5347
'--', '--nocapture', cwd='questdb-rs')
5448
run_cmd('cargo', 'test', cwd='questdb-rs-ffi')
5549
run_cmd(str(test_line_sender_path))
56-
run_cmd(str(test_line_sender_path_CXX20))
57-
#run_cmd('python3', str(system_test_path), 'run', '--versions', qdb_v, '-v')
58-
run_cmd('python3', str(system_test_path), 'run', '--repo', './questdb', '-v')
5950

6051

6152
if __name__ == '__main__':

ci/run_tests_pipeline.yaml

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,6 @@ stages:
5454
cd questdb-rs
5555
cargo build --examples --features almost-all-features
5656
displayName: "Build Rust examples"
57-
############################# temp for test begin #####################
58-
- script: |
59-
git clone --depth 1 https://github.com/questdb/questdb.git ./questdb
60-
displayName: git clone questdb
61-
- task: Maven@3
62-
displayName: "Compile QuestDB"
63-
inputs:
64-
mavenPOMFile: "questdb/pom.xml"
65-
jdkVersionOption: "1.11"
66-
options: "-DskipTests -Pbuild-web-console"
67-
############################# temp for test end #####################
6857
- script: python3 ci/run_all_tests.py
6958
env:
7059
JAVA_HOME: $(JAVA_HOME_11_X64)
@@ -80,11 +69,6 @@ stages:
8069
timeoutInMinutes: 10
8170
steps:
8271
- checkout: self
83-
- script: |
84-
apt install clang-format
85-
rustup component add clippy
86-
rustup component add rustfmt
87-
displayName: "Install clang-format, clippy and rustfmt"
8872
- script: |
8973
cd questdb-rs
9074
cargo fmt --all -- --check
@@ -101,9 +85,6 @@ stages:
10185
cd questdb-rs-ffi
10286
cargo clippy --all-targets --all-features -- -D warnings
10387
displayName: "questdb-rs-ffi: clippy"
104-
- script: |
105-
python3 ci/format_cpp.py --check
106-
displayName: "C/C++ clang-format"
10788
- script: |
10889
cd system_test
10990
cd tls_proxy
@@ -114,26 +95,3 @@ stages:
11495
cd tls_proxy
11596
cargo clippy --all-targets --all-features -- -D warnings
11697
displayName: "tls_proxy: clippy"
117-
- job: TestVsQuestDBMaster
118-
displayName: "Vs QuestDB 'master'"
119-
pool:
120-
vmImage: 'ubuntu-latest'
121-
timeoutInMinutes: 60
122-
steps:
123-
- checkout: self
124-
fetchDepth: 1
125-
lfs: false
126-
submodules: false
127-
- template: compile.yaml
128-
- script: |
129-
git clone --depth 1 https://github.com/questdb/questdb.git
130-
displayName: git clone questdb
131-
- task: Maven@3
132-
displayName: "Compile QuestDB"
133-
inputs:
134-
mavenPOMFile: 'questdb/pom.xml'
135-
jdkVersionOption: '1.11'
136-
options: "-DskipTests -Pbuild-web-console"
137-
- script: |
138-
python3 system_test/test.py run --repo ./questdb -v
139-
displayName: "integration test"

0 commit comments

Comments
 (0)