Skip to content

Commit ee3af31

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

File tree

3 files changed

+0
-52
lines changed

3 files changed

+0
-52
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 & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,6 @@ stages:
8080
timeoutInMinutes: 10
8181
steps:
8282
- 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"
8883
- script: |
8984
cd questdb-rs
9085
cargo fmt --all -- --check
@@ -101,9 +96,6 @@ stages:
10196
cd questdb-rs-ffi
10297
cargo clippy --all-targets --all-features -- -D warnings
10398
displayName: "questdb-rs-ffi: clippy"
104-
- script: |
105-
python3 ci/format_cpp.py --check
106-
displayName: "C/C++ clang-format"
10799
- script: |
108100
cd system_test
109101
cd tls_proxy
@@ -114,26 +106,3 @@ stages:
114106
cd tls_proxy
115107
cargo clippy --all-targets --all-features -- -D warnings
116108
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)