Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
elchead committed Jul 24, 2024
1 parent 236605a commit 12f1eb1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/actions/constellation_create/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ outputs:
runs:
using: "composite"
steps:
- name: Is conformance
if: input.conformance == 'true'
shell: bash
run: |
echo "It is a conformance test."
- name: Set constellation name
shell: bash
run: |
Expand Down
13 changes: 12 additions & 1 deletion .github/actions/e2e_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,17 @@ runs:
with:
azure_credentials: ${{ inputs.azureClusterCreateCredentials }}

- name: Check for Conformance mode
id: check_conformance
shell: bash
run: |
if [[ "${{ inputs.test }}" == "sonobuoy conformance" ]]; then
echo "Setting up for Sonobuoy Conformance Test"
echo "::set-output name=conformance::true"
else
echo "::set-output name=conformance::false"
fi
- name: Create cluster
id: constellation-create
uses: ./.github/actions/constellation_create
Expand All @@ -301,7 +312,7 @@ runs:
marketplaceImageVersion: ${{ inputs.marketplaceImageVersion }}
force: ${{ inputs.force }}
encryptionSecret: ${{ inputs.encryptionSecret }}

conformance: ${{ inputs.test == 'sonobuoy conformance' }}
- name: Deploy log- and metrics-collection (Kubernetes)
id: deploy-logcollection
if: inputs.isDebugImage == 'false'
Expand Down

0 comments on commit 12f1eb1

Please sign in to comment.