Skip to content

Commit 887591e

Browse files
committed
Switched from Archiconda to Miniforge
1 parent 73c11a8 commit 887591e

File tree

4 files changed

+6
-29
lines changed

4 files changed

+6
-29
lines changed

.travis.yml

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ cache:
1111
directories:
1212
- $HOME/.cache # cython cache
1313
- $HOME/.ccache # compiler cache
14-
addons:
15-
apt:
16-
packages:
17-
- xvfb
1814
env:
1915
global:
2016
# create a github personal access token

ci/deps/travis-37-aarch64.yaml

-22
This file was deleted.

ci/run_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
2121
fi
2222

2323
if [ "${TRAVIS_CPU_ARCH}" == "arm64" ]; then
24-
PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" --durations=10 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas";
24+
PYTEST_CMD="pytest -m \"$PATTERN\" --durations=10 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas";
2525
else
2626
PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" -n auto --dist=loadfile -s --strict --durations=10 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas"
2727
fi

ci/setup_env.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,14 @@ else
3737
fi
3838

3939
if [ "${TRAVIS_CPU_ARCH}" == "arm64" ]; then
40-
wget -q "https://github.com/conda-forge/miniforge/releases/download/4.8.2-1/Miniforge3-4.8.2-1-Linux-aarch64.sh" -O miniconda.sh;
40+
CONDA_URL="https://github.com/conda-forge/miniforge/releases/download/4.8.2-1/Miniforge3-4.8.2-1-Linux-aarch64.sh";
4141
else
42-
wget -q "https://repo.continuum.io/miniconda/Miniconda3-latest-$CONDA_OS.sh" -O miniconda.sh;
42+
CONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-$CONDA_OS.sh";
4343
fi
44+
wget -q $CONDA_URL -O miniconda.sh;
4445
chmod +x miniconda.sh
46+
47+
# Installation path is required for ARM64 platform as miniforge script installs in path $HOME/miniforge3.
4548
./miniconda.sh -b -p $MINICONDA_DIR
4649

4750
export PATH=$MINICONDA_DIR/bin:$PATH

0 commit comments

Comments
 (0)