This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new 5c6c11b  Fix integration tests (#919)
5c6c11b is described below

commit 5c6c11b1f5a43b7554165a7d926043a4d0bbd517
Author: Andy Grove <[email protected]>
AuthorDate: Sun Aug 22 12:03:13 2021 -0600

    Fix integration tests (#919)
---
 dev/docker/ballista-base.dockerfile               | 2 +-
 dev/docker/ballista.dockerfile                    | 6 +++---
 docs/user-guide/src/distributed/docker-compose.md | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev/docker/ballista-base.dockerfile 
b/dev/docker/ballista-base.dockerfile
index 4dc7a06..86f528d 100644
--- a/dev/docker/ballista-base.dockerfile
+++ b/dev/docker/ballista-base.dockerfile
@@ -23,7 +23,7 @@
 
 
 # Base image extends debian:buster-slim
-FROM rust:1.53.0-buster AS builder
+FROM rust:1.54.0-buster AS builder
 
 RUN apt update && apt -y install musl musl-dev musl-tools libssl-dev openssl
 
diff --git a/dev/docker/ballista.dockerfile b/dev/docker/ballista.dockerfile
index 11b788e..d488d90 100644
--- a/dev/docker/ballista.dockerfile
+++ b/dev/docker/ballista.dockerfile
@@ -22,10 +22,10 @@
 # as a mounted directory.
 
 ARG RELEASE_FLAG=--release
-FROM ballista-base:0.5.0-SNAPSHOT AS base
+FROM ballista-base:0.6.0 AS base
 WORKDIR /tmp/ballista
 RUN apt-get -y install cmake
-RUN cargo install cargo-chef 
+RUN cargo install cargo-chef --version 0.1.23
 
 FROM base as planner
 RUN mkdir /tmp/ballista/ballista
@@ -80,7 +80,7 @@ ENV RELEASE_FLAG=${RELEASE_FLAG}
 RUN if [ -z "$RELEASE_FLAG" ]; then mv /tmp/ballista/target/debug/tpch /tpch; 
else mv /tmp/ballista/target/release/tpch /tpch; fi
 
 # Copy the binary into a new container for a smaller docker image
-FROM ballista-base:0.5.0-SNAPSHOT
+FROM ballista-base:0.6.0
 
 COPY --from=builder /executor /
 
diff --git a/docs/user-guide/src/distributed/docker-compose.md 
b/docs/user-guide/src/distributed/docker-compose.md
index 9ada1ba..fc24d89 100644
--- a/docs/user-guide/src/distributed/docker-compose.md
+++ b/docs/user-guide/src/distributed/docker-compose.md
@@ -30,7 +30,7 @@ services:
     image: quay.io/coreos/etcd:v3.4.9
     command: "etcd -advertise-client-urls http://etcd:2379 -listen-client-urls 
http://0.0.0.0:2379";
   ballista-scheduler:
-    image: ballista:0.5.0-SNAPSHOT
+    image: ballista:0.6.0
     command: "/scheduler --config-backend etcd --etcd-urls etcd:2379 
--bind-host 0.0.0.0 --bind-port 50050"
     ports:
       - "50050:50050"
@@ -41,7 +41,7 @@ services:
     depends_on:
       - etcd
   ballista-executor:
-    image: ballista:0.5.0-SNAPSHOT
+    image: ballista:0.6.0
     command: "/executor --bind-host 0.0.0.0 --bind-port 50051 --scheduler-host 
ballista-scheduler"
     ports:
       - "50051:50051"

Reply via email to