Skip to content

Commit b029c10

Browse files
committed
cleanup push CI wf
1 parent e1f7983 commit b029c10

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,8 @@ jobs:
6363
node-version: [22.x]
6464
# Don't forget to update build-native-release
6565
python-version: [3.11]
66-
transpile-worker-threads: [false, true]
6766
fail-fast: false
6867

69-
env:
70-
CUBEJS_TRANSPILATION_WORKER_THREADS: ${{ matrix.transpile-worker-threads }}
7168
steps:
7269
- id: get-tag-out
7370
run: echo "$OUT"
@@ -121,16 +118,16 @@ jobs:
121118
- name: Lerna test
122119
run: yarn lerna run --concurrency 1 --stream --no-prefix unit
123120
- name: Fix lcov paths
124-
if: (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true)
121+
if: (matrix.node-version == '22.x')
125122
run: |
126123
./.github/actions/codecov-fix.sh
127124
- name: Combine all fixed LCOV files
128-
if: (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true)
125+
if: (matrix.node-version == '22.x')
129126
run: |
130127
echo "" > ./combined-unit.lcov
131128
find ./packages -type f -name lcov.fixed.info -exec cat {} + >> ./combined-unit.lcov || true
132129
- name: Upload coverage artifact
133-
if: (matrix.node-version == '22.x' && matrix.transpile-worker-threads == true)
130+
if: (matrix.node-version == '22.x')
134131
uses: actions/upload-artifact@v4
135132
with:
136133
name: coverage-unit

0 commit comments

Comments
 (0)