Skip to content

Commit

Permalink
MNT: small CI cleanup (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
lesteve committed Mar 17, 2020
1 parent 76e7cd1 commit 23b2a02
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 15 deletions.
11 changes: 1 addition & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
dist: trusty
sudo: required
dist: xenial

notifications:
email: false
Expand All @@ -11,26 +10,18 @@ matrix:
include:
- python: "3.6"
env:
- OS=ubuntu-14.04
- JOBQUEUE=sge
- python: "3.6"
env:
- OS=ubuntu-14.04
# JOBQUEUE=none is for tests that do not need a cluster to run
- JOBQUEUE=none
- python: "3.6"
env:
- OS=ubuntu-14.04
- JOBQUEUE=pbs
- python: "3.6"
env:
- OS=ubuntu-14.04
- JOBQUEUE=slurm

env:
global:
- DOCKER_COMPOSE_VERSION=1.6.0

before_install:
- set -e
- pwd
Expand Down
1 change: 0 additions & 1 deletion ci/none.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ function jobqueue_before_install {
./ci/conda_setup.sh
export PATH="$HOME/miniconda/bin:$PATH"
conda install --yes -c conda-forge python=$TRAVIS_PYTHON_VERSION dask distributed flake8 black pytest pytest-asyncio
pip install git+https://github.com/dask/distributed@master --upgrade --no-deps
}

function jobqueue_install {
Expand Down
1 change: 0 additions & 1 deletion ci/pbs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ RUN curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-L
/opt/anaconda/bin/conda clean -tipy && \
rm -f miniconda.sh
RUN conda install --yes -c conda-forge python=3.6 dask distributed flake8 pytest pytest-asyncio
RUN pip install git+https://github.com/dask/distributed --upgrade --no-deps

# Copy entrypoint and other needed scripts
COPY ./*.sh /
Expand Down
1 change: 0 additions & 1 deletion ci/sge/Dockerfile-master
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ RUN curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-L
ENV PATH /opt/anaconda/bin:$PATH
ARG PYTHON_VERSION
RUN conda install -c conda-forge python=$PYTHON_VERSION dask distributed pytest pytest-asyncio && conda clean -tipy
RUN pip install git+https://github.com/dask/distributed --upgrade --no-deps

COPY ./*.sh /
COPY ./*.txt /
Expand Down
1 change: 0 additions & 1 deletion ci/sge/Dockerfile-slave
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ RUN curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-L
ENV PATH /opt/anaconda/bin:$PATH
ARG PYTHON_VERSION
RUN conda install -c conda-forge python=$PYTHON_VERSION dask distributed pytest pytest-asyncio && conda clean -tipy
RUN pip install git+https://github.com/dask/distributed --upgrade --no-deps

COPY ./setup-slave.sh /
COPY ./*.sh /
Expand Down
1 change: 0 additions & 1 deletion ci/slurm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ RUN curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-L
rm -f miniconda.sh
ENV PATH /opt/anaconda/bin:$PATH
RUN conda install --yes -c conda-forge python=3.6 dask distributed flake8 pytest pytest-asyncio
RUN pip install git+https://github.com/dask/distributed --upgrade --no-deps

ENV LC_ALL en_US.UTF-8

Expand Down

0 comments on commit 23b2a02

Please sign in to comment.