Skip to content

Commit

Permalink
Merge pull request #4176 from fluxcd/e2e-improvements
Browse files Browse the repository at this point in the history
ci: disable fail-fast for ARM end-to-end
  • Loading branch information
hiddeco authored Aug 21, 2023
2 parents aa1eae2 + c03a0b7 commit a9e09b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/e2e-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
# Keep this list up-to-date with https://endoflife.date/kubernetes
# Check which versions are available on DockerHub with 'crane ls kindest/node'
KUBERNETES_VERSION: [ 1.25.11, 1.26.6, 1.27.3, 1.28.0 ]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
Expand Down
4 changes: 2 additions & 2 deletions cmd/flux/main_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func TestMain(m *testing.M) {
// Install Flux.
output, err := executeCommand("install --components-extra=image-reflector-controller,image-automation-controller")
if err != nil {
panic(fmt.Errorf("install falied: %s error:'%w'", output, err))
panic(fmt.Errorf("install failed: %s error:'%w'", output, err))
}

// Run tests
Expand All @@ -50,7 +50,7 @@ func TestMain(m *testing.M) {
// Uninstall Flux
output, err = executeCommand("uninstall -s --keep-namespace")
if err != nil {
panic(fmt.Errorf("uninstall falied: %s error:'%w'", output, err))
panic(fmt.Errorf("uninstall failed: %s error:'%w'", output, err))
}

// Delete namespace and wait for finalisation
Expand Down

0 comments on commit a9e09b8

Please sign in to comment.