Skip to content

Commit c917452

Browse files
committed
fix post-release ci job
1 parent d130dbc commit c917452

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/post-release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ jobs:
2929
steps:
3030
- name: Checkout
3131
uses: actions/checkout@v4
32+
- name: Install Rust
33+
uses: actions-rust-lang/setup-rust-toolchain@v1
34+
with:
35+
toolchain: nightly-2024-07-15
36+
# override: true # this is by default on
37+
rustflags: ""
38+
components: rustfmt
39+
target: x86_64-unknown-linux-gnu
40+
cache: false
3241
- name: Install Node.js ${{ matrix.node-version }}
3342
uses: actions/setup-node@v4
3443
with:
@@ -61,6 +70,9 @@ jobs:
6170
run: yarn build
6271
- name: Lerna tsc
6372
run: yarn tsc
73+
- name: Build cubejs-backend-native (without Python)
74+
run: yarn run native:build-release
75+
working-directory: ./packages/cubejs-backend-native
6476
- name: Birdbox
6577
env:
6678
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}

0 commit comments

Comments
 (0)