2024-08-26 06:39:07 -04:00
|
|
|
version: 2.1
|
|
|
|
setup: true
|
|
|
|
orbs:
|
|
|
|
continuation: circleci/continuation@1
|
2017-09-10 11:14:02 -04:00
|
|
|
jobs:
|
2024-08-26 06:39:07 -04:00
|
|
|
setup:
|
2022-08-05 10:35:24 -04:00
|
|
|
docker:
|
2024-08-26 06:39:07 -04:00
|
|
|
- image: cimg/go:1.21
|
2022-08-05 10:35:24 -04:00
|
|
|
steps:
|
2024-08-26 06:39:07 -04:00
|
|
|
- checkout
|
2022-08-05 10:35:24 -04:00
|
|
|
- run:
|
|
|
|
command: |
|
2024-08-26 06:39:07 -04:00
|
|
|
export SKIP=$(git log -n 1 $CIRCLE_SHA1 --pretty=%B | grep -q "NOCIRCLECI" && echo "true" || echo "false")
|
|
|
|
echo "{\"skip\": $SKIP}" >> set-up-params.json
|
|
|
|
- continuation/continue:
|
|
|
|
parameters: set-up-params.json
|
|
|
|
configuration_path: .circleci/build.yml
|
|
|
|
|
2017-09-10 11:14:02 -04:00
|
|
|
workflows:
|
2024-08-26 06:39:07 -04:00
|
|
|
configure:
|
|
|
|
when:
|
|
|
|
and:
|
|
|
|
- matches:
|
|
|
|
pattern: "^release.+"
|
|
|
|
value: << pipeline.git.branch >>
|
|
|
|
jobs:
|
|
|
|
- setup
|