mirror of
https://github.com/boostorg/boost.git
synced 2025-04-04 13:05:00 +00:00
17 lines
982 B
YAML
17 lines
982 B
YAML
version: 2.1
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: cppalliance/boost_superproject_build:24.04-v3
|
|
parallelism: 2
|
|
steps:
|
|
- checkout
|
|
- run: ./.circleci/autocancel.sh || true
|
|
- run: wget "https://raw.githubusercontent.com/boostorg/release-tools/master/ci_boost_common.py" -P ${HOME}
|
|
- run: wget "https://raw.githubusercontent.com/boostorg/release-tools/master/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_pre'
|
|
- run: '[ "$CIRCLE_NODE_INDEX" != "1" ] || EOL=CRLF python3 ${HOME}/ci_boost_release.py test_pre'
|
|
- 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'
|