Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion c_glib/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

FROM arrow:cpp
FROM arrowdev/arrow-cpp:latest

RUN apt-get update -y -q && \
apt-get -q install --no-install-recommends -y \
Expand Down
2 changes: 1 addition & 1 deletion dev/fuzzit/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

FROM arrow:cpp
FROM arrowdev/arrow-cpp:latest

RUN apt-get update && \
apt-get install -y -q \
Expand Down
4 changes: 2 additions & 2 deletions dev/lint/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

FROM arrow:python-3.6
FROM arrowdev/arrow-python-3.6

RUN apt-get update && \
apt-get install -y -q \
Expand All @@ -30,4 +30,4 @@ RUN conda install flake8 && \

ENV PATH=/opt/iwyu/bin:$PATH
ADD ci/docker_install_iwyu.sh /arrow/ci/
RUN arrow/ci/docker_install_iwyu.sh
RUN arrow/ci/docker_install_iwyu.sh
23 changes: 16 additions & 7 deletions dev/tasks/docker-tests/circle.linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,29 @@ version: 2
jobs:
build:
machine:
image: circleci/classic:201808-01
image: ubuntu-1604:201903-01
docker_layer_caching: true
steps:
- run: docker -v
- run: docker-compose -v
{% if arrow.branch == "master" %}
- run: |
if [ -n $DOCKER_USER ] && [ -n $DOCKER_PASS ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
fi
{% endif %}
- run: git clone --no-checkout {{ arrow.remote }} arrow
- run: git -C arrow fetch -t {{ arrow.remote }} {{ arrow.branch }}
- run: git -C arrow checkout FETCH_HEAD
- run: git -C arrow submodule update --init --recursive
- run: |
pushd arrow
{%- for command in commands %}
{{ command }}
{%- endfor %}
popd
- run:
command: |
pushd arrow
{%- for command in commands %}
{{ command }}
{%- endfor %}
popd
no_output_timeout: "1h"

workflows:
version: 2
Expand Down
Loading