Skip to content

Commit 39d49b2

Browse files
author
abergeron
authored
Merge pull request #525 from abergeron/circleci
Enable build on tags for CircleCI.
2 parents 2a8154e + 5fec128 commit 39d49b2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ test_script:
4444
- cmd: xcopy "%CONDA_LOC%"\conda-bld\win-64\libgpuarray* pkgs\ /Y
4545
- ps: |
4646
if($env:appveyor_repo_tag -eq 'True') {
47-
anaconda -t $env:BINSTAR_TOKEN upload --user=mila-udem pkgs/* 2>&1
47+
cmd /c "anaconda -t $env:BINSTAR_TOKEN upload --user=mila-udem pkgs/* 2>&1"
4848
}
4949
5050
artifacts:

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,7 @@ workflows:
3737
version: 2
3838
build_and_test:
3939
jobs:
40-
- build_pkgs
40+
- build_pkgs:
41+
filters:
42+
tags:
43+
only: /.*/

0 commit comments

Comments
 (0)