From f02af66d778cb810706e7754d24a25a7af0604cc Mon Sep 17 00:00:00 2001 From: Konstantin Burkalev Date: Mon, 27 Jan 2025 13:52:48 +0200 Subject: [PATCH] =?UTF-8?q?chore(ci):=20fix=20docker=20dev=20image=20build?= =?UTF-8?q?=20for=C2=A0master=20(#9143)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/master.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 697ff86606e7c..adab7c68d235c 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -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 cargo-cp-artifact@0.1 - 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