Skip to content

Commit 8402b7b

Browse files
committed
chore(workflows): Comment out shared infrastructure steps in build_test.yml for future reference
1 parent 380b7d3 commit 8402b7b

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

.github/workflows/build_test.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,27 @@ permissions:
1616
contents: read
1717

1818
jobs:
19-
shared-infrastructure:
20-
runs-on: ubuntu-latest
21-
steps:
22-
- uses: actions/checkout@v4
19+
# shared-infrastructure:
20+
# runs-on: ubuntu-latest
21+
# steps:
22+
# - uses: actions/checkout@v4
2323

24-
- name: Configure AWS credentials
25-
uses: aws-actions/configure-aws-credentials@v4
26-
with:
27-
role-to-assume: arn:aws:iam::819998446679:role/GithubActions-ServerlessDeveloperExperience
28-
aws-region: ${{ env.AWS_REGION }}
24+
# - name: Configure AWS credentials
25+
# uses: aws-actions/configure-aws-credentials@v4
26+
# with:
27+
# role-to-assume: arn:aws:iam::819998446679:role/GithubActions-ServerlessDeveloperExperience
28+
# aws-region: ${{ env.AWS_REGION }}
2929

30-
- name: Deploy Shared Images
31-
working-directory: unicorn_shared
32-
run: make deploy-images
30+
# - name: Deploy Shared Images
31+
# working-directory: unicorn_shared
32+
# run: make deploy-images
3333

34-
- name: Deploy Shared Namespaces
35-
working-directory: unicorn_shared
36-
run: aws cloudformation update-stack --stack-name uni-prop-namespaces --template-body file://uni-prop-namespaces.yaml --capabilities CAPABILITY_AUTO_EXPAND
34+
# - name: Deploy Shared Namespaces
35+
# working-directory: unicorn_shared
36+
# run: aws cloudformation update-stack --stack-name uni-prop-namespaces --template-body file://uni-prop-namespaces.yaml --capabilities CAPABILITY_AUTO_EXPAND
3737

3838
unicorn-service:
39-
needs: shared-infrastructure
39+
# needs: shared-infrastructure
4040
runs-on: ubuntu-latest
4141
continue-on-error: true
4242

@@ -66,11 +66,11 @@ jobs:
6666
run: make unit-test
6767
working-directory: ${{ matrix.folder }}
6868

69-
- name: Configure AWS credentials
70-
uses: aws-actions/configure-aws-credentials@v4
71-
with:
72-
role-to-assume: arn:aws:iam::819998446679:role/GithubActions-ServerlessDeveloperExperience
73-
aws-region: ${{ env.AWS_REGION }}
69+
# - name: Configure AWS credentials
70+
# uses: aws-actions/configure-aws-credentials@v4
71+
# with:
72+
# role-to-assume: arn:aws:iam::819998446679:role/GithubActions-ServerlessDeveloperExperience
73+
# aws-region: ${{ env.AWS_REGION }}
7474

7575
- name: Configure AWS SAM
7676
uses: aws-actions/setup-sam@v2
@@ -81,10 +81,10 @@ jobs:
8181
run: sam build
8282
working-directory: ${{ matrix.folder }}
8383

84-
- name: Deploy the SAM template
85-
run: sam deploy --no-confirm-changeset
86-
working-directory: ${{ matrix.folder }}
84+
# - name: Deploy the SAM template
85+
# run: sam deploy --no-confirm-changeset
86+
# working-directory: ${{ matrix.folder }}
8787

88-
- name: Run integration tests
89-
run: make integration-test
90-
working-directory: ${{ matrix.folder }}
88+
# - name: Run integration tests
89+
# run: make integration-test
90+
# working-directory: ${{ matrix.folder }}

0 commit comments

Comments
 (0)