Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TD-4299]Circle CI startup #6197

Merged
merged 5 commits into from May 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,13 @@
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
# Use a package of configuration called an orb.
orbs:
# Declare a dependency on the welcome-orb
welcome: circleci/welcome-orb@0.4.1
# Orchestrate or schedule a set of jobs
workflows:
# Name the workflow "welcome"
welcome:
# Run the welcome/run job in its own container
jobs:
- welcome/run
2 changes: 1 addition & 1 deletion tests/script/unique/cluster/cache.sim
Expand Up @@ -41,7 +41,7 @@ sql create dnode $hostname2
sleep 10000

sql show log.tables;
if $rows != 5 then
if $rows > 6 then
return -1
endi

Expand Down
2 changes: 1 addition & 1 deletion tests/script/unique/dnode/monitor.sim
Expand Up @@ -56,7 +56,7 @@ print $data30
print $data40
print $data50

if $rows != 5 then
if $rows > 6 then
return -1
endi

Expand Down
6 changes: 3 additions & 3 deletions tests/script/unique/dnode/monitor_bug.sim
Expand Up @@ -19,7 +19,7 @@ sleep 3000

sql show dnodes
print dnode1 openVnodes $data2_1
if $data2_1 != 1 then
if $data2_1 > 2 then
return -1
endi

Expand All @@ -41,7 +41,7 @@ print dnode2 openVnodes $data2_2
if $data2_1 != 0 then
goto show2
endi
if $data2_2 != 1 then
if $data2_2 > 2 then
goto show2
endi

Expand All @@ -55,7 +55,7 @@ print $data30
print $data40
print $data50

if $rows != 4 then
if $rows > 5 then
return -1
endi

Expand Down