@@ -54,17 +54,6 @@ stages:
54
54
cd questdb-rs
55
55
cargo build --examples --features almost-all-features
56
56
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 #####################
68
57
- script : python3 ci/run_all_tests.py
69
58
env :
70
59
JAVA_HOME : $(JAVA_HOME_11_X64)
@@ -80,11 +69,6 @@ stages:
80
69
timeoutInMinutes : 10
81
70
steps :
82
71
- 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"
88
72
- script : |
89
73
cd questdb-rs
90
74
cargo fmt --all -- --check
@@ -101,9 +85,6 @@ stages:
101
85
cd questdb-rs-ffi
102
86
cargo clippy --all-targets --all-features -- -D warnings
103
87
displayName: "questdb-rs-ffi: clippy"
104
- - script : |
105
- python3 ci/format_cpp.py --check
106
- displayName: "C/C++ clang-format"
107
88
- script : |
108
89
cd system_test
109
90
cd tls_proxy
@@ -114,26 +95,3 @@ stages:
114
95
cd tls_proxy
115
96
cargo clippy --all-targets --all-features -- -D warnings
116
97
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