Skip to content

Commit 38d0dc7

Browse files
committed
Fix indentation.
1 parent 1a453bb commit 38d0dc7

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.circleci/config.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,30 @@ jobs:
88
steps:
99
- checkout
1010
- run:
11-
name: "Checkout Merge Commit"
12-
command: |
13-
if [[ -n "${CIRCLE_PR_NUMBER}" ]]
14-
then
15-
git fetch -u origin "+refs/pull/${CIRCLE_PR_NUMBER}/merge:pr/${CIRCLE_PR_NUMBER}/merge"
16-
git checkout -qf "pr/${CIRCLE_PR_NUMBER}/merge"
17-
fi
11+
name: "Checkout Merge Commit"
12+
command: |
13+
if [[ -n "${CIRCLE_PR_NUMBER}" ]]
14+
then
15+
git fetch -u origin "+refs/pull/${CIRCLE_PR_NUMBER}/merge:pr/${CIRCLE_PR_NUMBER}/merge"
16+
git checkout -qf "pr/${CIRCLE_PR_NUMBER}/merge"
17+
fi
1818
- run:
19-
name: "Build Recipe"
20-
command: |
21-
export GPUARRAY_VERSION=`python -c 'import versioneer; print(versioneer.get_version())'`
22-
conda build --python 2.7 conda
23-
conda build --python 3.5 conda/pygpu
24-
conda build --python 3.6 conda/pygpu
19+
name: "Build Recipe"
20+
command: |
21+
export GPUARRAY_VERSION=`python -c 'import versioneer; print(versioneer.get_version())'`
22+
conda build --python 2.7 conda
23+
conda build --python 3.5 conda/pygpu
24+
conda build --python 3.6 conda/pygpu
2525
- run:
26-
name: "Upload Tagged Versions"
27-
command: |
28-
if [[ -n "${CIRCLE_TAG}" ]]
29-
then
30-
anaconda -t $BINSTAR_TOKEN upload --user=mila-udem /miniconda/conda-bld/linux-64/libgpuarray*
31-
anaconda -t $BINSTAR_TOKEN upload --user=mila-udem /miniconda/conda-bld/linux-64/pygpu*
32-
fi
26+
name: "Upload Tagged Versions"
27+
command: |
28+
if [[ -n "${CIRCLE_TAG}" ]]
29+
then
30+
anaconda -t $BINSTAR_TOKEN upload --user=mila-udem /miniconda/conda-bld/linux-64/libgpuarray*
31+
anaconda -t $BINSTAR_TOKEN upload --user=mila-udem /miniconda/conda-bld/linux-64/pygpu*
32+
fi
3333
- store_artifacts:
34-
path: /miniconda/conda-bld/linux-64
34+
path: /miniconda/conda-bld/linux-64
3535

3636
workflows:
3737
version: 2

0 commit comments

Comments
 (0)