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
@@ -120,21 +120,6 @@ jobs:
120
120
# files: ./packages/*/coverage/clover.xml
121
121
# flags: cube-backend
122
122
# verbose: true # optional (default = false)
123
-
- name: Cargo test cubeorchestrator
124
-
run: |
125
-
cargo test --manifest-path rust/cubeorchestrator/Cargo.toml -j 1
126
-
- name: Cargo test cubenativeutils
127
-
run: |
128
-
cargo test --manifest-path rust/cubenativeutils/Cargo.toml -j 1
129
-
- name: Cargo test cubeshared
130
-
run: |
131
-
cargo test --manifest-path rust/cubeshared/Cargo.toml -j 1
132
-
# - name: Cargo test cubesql
133
-
# run: |
134
-
# cargo test --manifest-path rust/cubesql/Cargo.toml -j 1
135
-
- name: Cargo test cubesqlplanner
136
-
run: |
137
-
cargo test --manifest-path rust/cubesqlplanner/cubesqlplanner/Cargo.toml -j 1
138
123
139
124
lint:
140
125
runs-on: ubuntu-24.04
@@ -179,6 +164,8 @@ jobs:
179
164
retry_wait_seconds: 15
180
165
timeout_minutes: 20
181
166
command: yarn install --frozen-lockfile
167
+
- name: Check Yarn lock wasn't modified
168
+
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