Skip to content

Commit

Permalink
Using larger BuildJet Runner - going back to Arrow 12.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
prmoore77 committed Jun 6, 2023
1 parent adbb530 commit 8323778
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- platform: amd64
runner: ubuntu-latest
- platform: arm64
runner: buildjet-2vcpu-ubuntu-2204-arm
runner: buildjet-8vcpu-ubuntu-2204-arm
runs-on: ${{ matrix.runner }}
steps:
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ENV PATH="${VIRTUAL_ENV}/bin:${PATH}"
COPY --chown=app_user:app_user ./scripts ./scripts

# Build and install Arrow (we clone in Docker to avoid .git issues, and build from source to freeze the version)
ARG ARROW_VERSION="apache-arrow-12.0.0"
ARG ARROW_VERSION="apache-arrow-12.0.1"
RUN scripts/build_arrow.sh ${ARROW_VERSION} "Y"

# Build and install DuckDB (we clone in Docker to avoid .git issues), cleanup source files afterward)
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_arrow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e
set -o pipefail

ARROW_VERSION=${1:-"apache-arrow-12.0.0"}
ARROW_VERSION=${1:-"apache-arrow-12.0.1"}
REMOVE_SOURCE_FILES=${2:-"N"}

echo "Variable: ARROW_VERSION=${ARROW_VERSION}"
Expand Down

0 comments on commit 8323778

Please sign in to comment.