File tree Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -159,9 +159,19 @@ defaults: &defaults
159159 fi
160160 - store_test_results :
161161 path : test-results
162- # Save artifacts
162+ # Save artifacts. This is silly but wildcards aren't supported.
163163 - store_artifacts :
164- path : /tmp/circleci-artifacts
164+ path : " /tmp/circleci-artifacts/3_6/dist/"
165+ - store_artifacts :
166+ path : " /tmp/circleci-artifacts/3_6/build/sphinx/"
167+ - store_artifacts :
168+ path : " /tmp/circleci-artifacts/3_7/dist/"
169+ - store_artifacts :
170+ path : " /tmp/circleci-artifacts/3_7/build/sphinx/"
171+ - store_artifacts :
172+ path : " /tmp/circleci-artifacts/3_8/dist/"
173+ - store_artifacts :
174+ path : " /tmp/circleci-artifacts/3_8/build/sphinx/"
165175 - store_artifacts :
166176 path : test-results
167177 - persist_to_workspace :
@@ -197,6 +207,18 @@ jobs:
197207 docker :
198208 - image : cimg/python:3.7-node
199209 << : *defaults
210+ build_3_8 :
211+ environment :
212+ CIRCLE_ARTIFACTS : /tmp/circleci-artifacts/3_8
213+ CIRCLE_TEST_REPORTS : /tmp/circleci-test-results/3_8
214+ VERSION : 0.4.5
215+ PANDOC_RELEASES_URL : https://github.com/jgm/pandoc/releases
216+ YARN_STATIC_DIR : notebooker/web/static/
217+ IMAGE_NAME : mangroup/notebooker
218+ working_directory : ~/notebooker_3_8
219+ docker :
220+ - image : cimg/python:3.8-node
221+ << : *defaults
200222 publish-github-release :
201223 docker :
202224 - image : cibuilds/github:0.13
@@ -222,10 +244,12 @@ workflows:
222244 jobs :
223245 - build_3_6
224246 - build_3_7
247+ - build_3_8
225248 - publish-github-release :
226249 requires :
227250 - build_3_6
228251 - build_3_7
252+ - build_3_8
229253 filters :
230254 branches :
231255 only :
@@ -241,3 +265,4 @@ workflows:
241265 jobs :
242266 - build_3_6
243267 - build_3_7
268+ - build_3_8
You can’t perform that action at this time.
0 commit comments