Skip to content

Commit

Permalink
chore(ci): fix docker dev image build for master (#9143)
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon authored Jan 27, 2025
1 parent bcf57df commit f02af66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit f02af66

Please sign in to comment.