Skip to content

Commit 3525918

Browse files
authored
Merge pull request #876 from poldracklab/ci/minimal_fix
CI: Fix up Circle builds
2 parents 9859f6d + ec32c22 commit 3525918

File tree

5 files changed

+73
-112
lines changed

5 files changed

+73
-112
lines changed

.circleci/config.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ jobs:
8080
rm -rf /tmp/src/mriqcwebapi
8181
git clone https://github.com/poldracklab/mriqcwebapi.git /tmp/src/mriqcwebapi
8282
cd /tmp/src/mriqcwebapi
83-
git checkout ${MRIQC_API_TAG}
8483
if [ "${MRIQC_API_SECRET_TOKEN}" != "" ]; then
8584
sed -i -E "s/<secret_token>/$MRIQC_API_SECRET_TOKEN/" dockereve-master/.env
8685
grep -q -i $MRIQC_API_SECRET_TOKEN dockereve-master/.env
@@ -278,9 +277,8 @@ jobs:
278277
name: Load Docker image layer cache
279278
no_output_timeout: 30m
280279
command: |
281-
pyenv local 3.5.2
282-
python -m pip install --upgrade pip
283-
pip install docker-compose
280+
python3 -m pip install --upgrade pip
281+
python3 -m pip install docker-compose
284282
docker info
285283
set +o pipefail
286284
sudo apt update && sudo apt -y install pigz
@@ -431,9 +429,8 @@ jobs:
431429
no_output_timeout: 30m
432430
command: |
433431
docker info
434-
pyenv local 3.5.2
435-
python -m pip install --upgrade pip
436-
pip install docker-compose
432+
python3 -m pip install --upgrade pip
433+
python3 -m pip install docker-compose
437434
set +o pipefail
438435
sudo apt update && sudo apt -y install pigz
439436
if [ -f /tmp/cache/docker.tar.gz ]; then

0 commit comments

Comments
 (0)