Skip to content

Commit

Permalink
Merge branch 'main' into user-defined-lifecycle-hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Feb 15, 2024
2 parents a0f21bf + 1f628e2 commit 8dd85e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
uses: ./.github/workflows/ci-test-go.yml
with:
go-version: ${{ matrix.go-version }}
fail-fast: true
fail-fast: false
platform: "ubuntu-latest"
project-directory: "."
rootless-docker: false
Expand All @@ -72,7 +72,7 @@ jobs:
uses: ./.github/workflows/ci-test-go.yml
with:
go-version: ${{ matrix.go-version }}
fail-fast: true
fail-fast: false
platform: "ubuntu-latest"
project-directory: "."
rootless-docker: true
Expand Down
2 changes: 1 addition & 1 deletion docker_files_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func TestCopyFileToRunningContainer(t *testing.T) {
require.NoError(t, err)

// Give some time to the wait script to catch the hello script being created
err = wait.ForLog("done").WithStartupTimeout(200*time.Millisecond).WaitUntilReady(ctx, container)
err = wait.ForLog("done").WithStartupTimeout(2*time.Second).WaitUntilReady(ctx, container)
require.NoError(t, err)

require.NoError(t, container.Terminate(ctx))
Expand Down
4 changes: 2 additions & 2 deletions modulegen/_template/ci.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
uses: ./.github/workflows/ci-test-go.yml
with:
go-version: {{ "${{ matrix.go-version }}" }}
fail-fast: true
fail-fast: false
platform: "ubuntu-latest"
project-directory: "."
rootless-docker: false
Expand All @@ -72,7 +72,7 @@ jobs:
uses: ./.github/workflows/ci-test-go.yml
with:
go-version: {{ "${{ matrix.go-version }}" }}
fail-fast: true
fail-fast: false
platform: "ubuntu-latest"
project-directory: "."
rootless-docker: true
Expand Down

0 comments on commit 8dd85e8

Please sign in to comment.