Skip to content

Commit ef1ebaf

Browse files
committed
ci(circleci): save wheels as artifacts
1 parent 1ef770d commit ef1ebaf

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.circleci/config.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
build-wheel: &build-wheel
22
working_directory: /work
33
steps:
4-
- checkout
5-
- run:
6-
name: build wheel
7-
command: bash /work/ci/build-wheels.sh
8-
- run:
9-
name: upload
10-
command: |
11-
if [ $CIRCLE_TAG ]; then source /work/ci/deploy.sh; fi
12-
4+
- checkout
5+
- run:
6+
name: build wheel
7+
command: bash /work/ci/build-wheels.sh
8+
- run:
9+
name: upload
10+
command: |
11+
if [ $CIRCLE_TAG ]; then source /work/ci/deploy.sh; fi
12+
- store_artifacts:
13+
path: wheelhouse/
1314
test: &test
1415
working_directory: ~/bencoder.pyx
1516
steps:
@@ -43,7 +44,6 @@ test_pypy: &test_pypy
4344
command: |
4445
tox -e ${CIRCLE_JOB}
4546
46-
4747
version: 2
4848
jobs:
4949
#
@@ -148,7 +148,6 @@ jobs:
148148
- image: quay.io/pypa/manylinux1_i686
149149
<<: *build-wheel
150150

151-
152151
workflows:
153152
version: 2
154153
test_and_build:

0 commit comments

Comments
 (0)