-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): fix docker dev image build for master (#9143)
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ jobs: | |
timeout-minutes: 60 | ||
name: Build Linux Native backend for Dev image | ||
container: | ||
image: cubejs/rust-cross:x86_64-unknown-linux-gnu-15082024-python-3.9 | ||
image: cubejs/rust-cross:x86_64-unknown-linux-gnu-15082024-python-3.11 | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -79,14 +79,14 @@ jobs: | |
run: npm install -g [email protected] | ||
- name: Build native (with Python) | ||
env: | ||
PYO3_PYTHON: python3.9 | ||
PYO3_PYTHON: python3.11 | ||
CARGO_BUILD_TARGET: x86_64-unknown-linux-gnu | ||
working-directory: ./packages/cubejs-backend-native | ||
run: yarn run native:build-debug-python | ||
- name: Store build artifact for dev image | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "native-linux-x64-glibc-3.9.node" # this name is referenced below in docker-image-dev | ||
name: "native-linux-x64-glibc-3.11.node" # this name is referenced below in docker-image-dev | ||
path: ./packages/cubejs-backend-native/index.node | ||
overwrite: true | ||
|
||
|
@@ -101,7 +101,7 @@ jobs: | |
- name: Download backend-native artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: "native-linux-x64-glibc-3.9.node" # this name is referenced in above in native_linux | ||
name: "native-linux-x64-glibc-3.11.node" # this name is referenced in above in native_linux | ||
path: ./packages/cubejs-backend-native/ | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v3 | ||
|