Merge pull request #4176 from fluxcd/e2e-improvements

ci: disable fail-fast for ARM end-to-end
pull/4177/head
Hidde Beydals 1 year ago committed by GitHub
commit a9e09b856f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,6 +18,7 @@ jobs:
# Keep this list up-to-date with https://endoflife.date/kubernetes # Keep this list up-to-date with https://endoflife.date/kubernetes
# Check which versions are available on DockerHub with 'crane ls kindest/node' # 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 ] KUBERNETES_VERSION: [ 1.25.11, 1.26.6, 1.27.3, 1.28.0 ]
fail-fast: false
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

@ -41,7 +41,7 @@ func TestMain(m *testing.M) {
// Install Flux. // Install Flux.
output, err := executeCommand("install --components-extra=image-reflector-controller,image-automation-controller") output, err := executeCommand("install --components-extra=image-reflector-controller,image-automation-controller")
if err != nil { 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 // Run tests
@ -50,7 +50,7 @@ func TestMain(m *testing.M) {
// Uninstall Flux // Uninstall Flux
output, err = executeCommand("uninstall -s --keep-namespace") output, err = executeCommand("uninstall -s --keep-namespace")
if err != nil { 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 // Delete namespace and wait for finalisation

Loading…
Cancel
Save