Skip to content

Commit adda780

Browse files
committed
Context converter programmatically repairing CircleCI config!
1 parent 8fd7383 commit adda780

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.circleci/config.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ jobs:
55
steps:
66
- checkout
77
- run: docker-compose up shellcheck
8-
98
integration_test:
109
docker:
1110
- image: 087285199408.dkr.ecr.us-east-1.amazonaws.com/circle-ci-test-image-base:go1.14
@@ -24,29 +23,33 @@ jobs:
2423
path: /tmp/logs
2524
- store_test_results:
2625
path: /tmp/logs
27-
2826
bats_ubuntu1604:
2927
# We need to run Docker Compose with privileged settings, which isn't supported by CircleCI's Docker executor, so
3028
# we have to use the machine executor instead.
3129
machine: true
3230
steps:
3331
- checkout
3432
- run: docker-compose up bats_ubuntu1604
35-
3633
bats_ubuntu1804:
3734
# We need to run Docker Compose with privileged settings, which isn't supported by CircleCI's Docker executor, so
3835
# we have to use the machine executor instead.
3936
machine: true
4037
steps:
4138
- checkout
4239
- run: docker-compose up bats_ubuntu1804
43-
4440
workflows:
4541
version: 2
4642
checks:
4743
jobs:
48-
- shellcheck
44+
- shellcheck:
45+
context:
46+
- Gruntwork Admin
4947
- integration_test:
50-
context: Gruntwork Admin
51-
- bats_ubuntu1604
52-
- bats_ubuntu1804
48+
context:
49+
- Gruntwork Admin
50+
- bats_ubuntu1604:
51+
context:
52+
- Gruntwork Admin
53+
- bats_ubuntu1804:
54+
context:
55+
- Gruntwork Admin

0 commit comments

Comments
 (0)