Skip to content

Commit

Permalink
Don't run the big bang test for externals who don't have the IB usern…
Browse files Browse the repository at this point in the history
…ame (#1432)

## Description

This skips running the big bang test if the Iron Bank secret is not
present

## Related Issue

Fixes #N/A

## Type of change

- [X] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Other (security config, docs update, etc)

## Checklist before merging

- [X] Test, docs, adr added or updated as needed
- [X] [Contributor Guide
Steps](https://github.com/defenseunicorns/zarf/blob/main/CONTRIBUTING.md#developer-workflow)
followed
  • Loading branch information
Racer159 authored Mar 15, 2023
1 parent c772a25 commit 787c663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-bigbang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
password: ${{ secrets.IRONBANK_PASSWORD }}

- name: Run tests
run: go test ./src/extensions/bigbang/test -failfast -v -timeout 30m
run: "[ -n \"${{ secrets.IRONBANK_USERNAME }}\" ] && go test ./src/extensions/bigbang/test -failfast -v -timeout 30m"

- name: Save logs
if: always()
Expand Down

0 comments on commit 787c663

Please sign in to comment.