You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/push.yml
+11-68Lines changed: 11 additions & 68 deletions
Original file line number
Diff line number
Diff line change
@@ -124,21 +124,6 @@ jobs:
124
124
# files: ./packages/*/coverage/clover.xml
125
125
# flags: cube-backend
126
126
# verbose: true # optional (default = false)
127
-
- name: Cargo test cubeorchestrator
128
-
run: |
129
-
cargo test --manifest-path rust/cubeorchestrator/Cargo.toml -j 1
130
-
- name: Cargo test cubenativeutils
131
-
run: |
132
-
cargo test --manifest-path rust/cubenativeutils/Cargo.toml -j 1
133
-
- name: Cargo test cubeshared
134
-
run: |
135
-
cargo test --manifest-path rust/cubeshared/Cargo.toml -j 1
136
-
# - name: Cargo test cubesql
137
-
# run: |
138
-
# cargo test --manifest-path rust/cubesql/Cargo.toml -j 1
139
-
- name: Cargo test cubesqlplanner
140
-
run: |
141
-
cargo test --manifest-path rust/cubesqlplanner/cubesqlplanner/Cargo.toml -j 1
142
127
143
128
lint:
144
129
runs-on: ubuntu-24.04
@@ -183,6 +168,8 @@ jobs:
183
168
retry_wait_seconds: 15
184
169
timeout_minutes: 20
185
170
command: yarn install --frozen-lockfile
171
+
- name: Check Yarn lock wasn't modified
172
+
run: if [ "$(git status | grep nothing)x" = "x" ]; then echo "Non empty changeset after lerna bootstrap"; git status; exit 1; else echo "Nothing to commit. Proceeding"; fi;
run: if [ "$(git status | grep nothing)x" = "x" ]; then echo "Non empty changeset after lerna bootstrap"; git status; exit 1; else echo "Nothing to commit. Proceeding"; fi;
0 commit comments