Skip to content

Commit

Permalink
Try this.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharpz7 committed Oct 14, 2023
1 parent 4cfbd65 commit 17846b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ jobs:
- lint
- test
- build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- run: echo "All required checks done"
2 changes: 1 addition & 1 deletion magefiles/ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func TestSuite() error {
timeTaken := time.Now()
out, err2 := goOutput("run", "cmd/testsuite/main.go", "test",
"--tests", "testsuite/testcases/basic/*",
"--junit", "junit.xml",
"--junit", "junit.xml", "--armadaUrl", "127.0.0.1:50051",
)
if err2 != nil {
return err2
Expand Down
2 changes: 1 addition & 1 deletion magefiles/developer.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func StopComponents() error {

// Repeatedly check logs until Pulsar is ready.
func CheckForPulsarRunning() error {
timeout := time.After(10 * time.Minute)
timeout := time.After(2 * time.Minute)
tick := time.Tick(1 * time.Second)
seconds := 0
for {
Expand Down

0 comments on commit 17846b2

Please sign in to comment.