summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorsdarwin <samuel.d.darwin@gmail.com>2021-12-13 08:58:14 -0600
committerGlen Fernandes <glen.fernandes@gmail.com>2022-02-06 14:48:53 -0500
commit9e54955b80957ba0083724802a386dd07c889ccc (patch)
treed8a4199d67d1fb39faf4514e2c70a63fe9aa3522 /.circleci
parent0ac602569d3cfe041158ba1b3717c164ebce9bad (diff)
downloadboost-9e54955b80957ba0083724802a386dd07c889ccc.tar.gz
Switch to python3 release-tools
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index cdae1d1f33..d8a1f0553b 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -2,13 +2,13 @@ version: 2
jobs:
build:
docker:
- - image: cppalliance/boost_superproject_build:build-deps-4
+ - image: cppalliance/boost_superproject_build:python3-build2
parallelism: 2
steps:
- checkout
- - run: wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_common.py" -P ${HOME}
- - run: wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_release.py" -P ${HOME}
- - run: python ${HOME}/ci_boost_release.py checkout_post
- # - run: python ${HOME}/ci_boost_release.py dependencies_override
- - run: '[ "$CIRCLE_NODE_INDEX" != "0" ] || EOL=LF python ${HOME}/ci_boost_release.py test_override'
- - run: '[ "$CIRCLE_NODE_INDEX" != "1" ] || EOL=CRLF python ${HOME}/ci_boost_release.py test_override'
+ - run: wget "https://raw.githubusercontent.com/boostorg/release-tools/python3/ci_boost_common.py" -P ${HOME}
+ - run: wget "https://raw.githubusercontent.com/boostorg/release-tools/python3/ci_boost_release.py" -P ${HOME}
+ - run: python3 ${HOME}/ci_boost_release.py checkout_post
+ # - run: python3 ${HOME}/ci_boost_release.py dependencies_override
+ - run: '[ "$CIRCLE_NODE_INDEX" != "0" ] || EOL=LF python3 ${HOME}/ci_boost_release.py test_override'
+ - run: '[ "$CIRCLE_NODE_INDEX" != "1" ] || EOL=CRLF python3 ${HOME}/ci_boost_release.py test_override'