Skip to content

Commit db37396

Browse files
committed
NRL-1213 comment out smoke test
1 parent cb8d949 commit db37396

File tree

1 file changed

+42
-42
lines changed

1 file changed

+42
-42
lines changed

.github/workflows/pr-env-deploy.yml

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -264,51 +264,51 @@ jobs:
264264
- name: Run Integration Tests
265265
run: make test-features-integration TF_WORKSPACE_NAME=${{ needs.set-environment-id.outputs.environment_id }}
266266

267-
smoke-test:
268-
name: Run Smoke Tests
269-
needs: [set-environment-id, integration-test]
270-
environment: pull-request
271-
runs-on: [self-hosted, ci]
272-
273-
steps:
274-
- name: Git Clone - ${{ github.event.pull_request.head.ref }}
275-
uses: actions/checkout@v4
276-
with:
277-
ref: ${{ github.event.pull_request.head.ref }}
278-
279-
- name: Setup asdf cache
280-
uses: actions/cache@v4
281-
with:
282-
path: ~/.asdf
283-
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}
284-
restore-keys: |
285-
${{ runner.os }}-asdf-
286-
287-
- name: Install asdf and tools
288-
uses: asdf-vm/actions/[email protected]
289-
with:
290-
asdf_branch: v0.13.1
291-
292-
- name: Setup Python environment
293-
run: |
294-
poetry install --no-root
295-
source $(poetry env info --path)/bin/activate
296-
297-
- name: Configure Management Credentials
298-
uses: aws-actions/configure-aws-credentials@v4
299-
with:
300-
aws-region: eu-west-2
301-
role-to-assume: ${{ secrets.MGMT_ROLE_ARN }}
302-
role-session-name: github-actions-ci-${{ needs.set-environment-id.outputs.environment_id }}
303-
304-
- name: Smoke Test
305-
run: |
306-
make ENV=dev truststore-pull-client
307-
make ENV=dev TF_WORKSPACE_NAME=${{ needs.set-environment-id.outputs.environment_id }} test-smoke-internal
267+
# smoke-test:
268+
# name: Run Smoke Tests
269+
# needs: [set-environment-id, integration-test]
270+
# environment: pull-request
271+
# runs-on: [self-hosted, ci]
272+
273+
# steps:
274+
# - name: Git Clone - ${{ github.event.pull_request.head.ref }}
275+
# uses: actions/checkout@v4
276+
# with:
277+
# ref: ${{ github.event.pull_request.head.ref }}
278+
279+
# - name: Setup asdf cache
280+
# uses: actions/cache@v4
281+
# with:
282+
# path: ~/.asdf
283+
# key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}
284+
# restore-keys: |
285+
# ${{ runner.os }}-asdf-
286+
287+
# - name: Install asdf and tools
288+
# uses: asdf-vm/actions/[email protected]
289+
# with:
290+
# asdf_branch: v0.13.1
291+
292+
# - name: Setup Python environment
293+
# run: |
294+
# poetry install --no-root
295+
# source $(poetry env info --path)/bin/activate
296+
297+
# - name: Configure Management Credentials
298+
# uses: aws-actions/configure-aws-credentials@v4
299+
# with:
300+
# aws-region: eu-west-2
301+
# role-to-assume: ${{ secrets.MGMT_ROLE_ARN }}
302+
# role-session-name: github-actions-ci-${{ needs.set-environment-id.outputs.environment_id }}
303+
304+
# - name: Smoke Test
305+
# run: |
306+
# make ENV=dev truststore-pull-client
307+
# make ENV=dev TF_WORKSPACE_NAME=${{ needs.set-environment-id.outputs.environment_id }} test-smoke-internal
308308

309309
performance-test:
310310
name: Run Performance Tests
311-
needs: [set-environment-id, smoke-test]
311+
needs: [set-environment-id, integration-test]
312312
environment: pull-request
313313
runs-on: [self-hosted, ci]
314314

0 commit comments

Comments
 (0)