Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CICD: upgrade xcode on circleci macos executors #4188

Merged
merged 2 commits into from Jun 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -35,13 +35,13 @@ executors:
resource_class: arm.large
mac_amd64_medium:
macos:
xcode: 12.0.1
xcode: 13.4.1
resource_class: medium
environment:
HOMEBREW_NO_AUTO_UPDATE: "true"
mac_amd64_large:
macos:
xcode: 12.0.1
xcode: 13.4.1
resource_class: large
environment:
HOMEBREW_NO_AUTO_UPDATE: "true"
Expand Down
4 changes: 2 additions & 2 deletions test/e2e-go/cli/goal/expect/testInfraTest.exp
Expand Up @@ -53,7 +53,7 @@ proc checkProcessReturnedCodeTest {} {
}

# test close sending sighup
spawn /bin/bash -c "echo 44; sleep 2s; kill -11 $$"
spawn /bin/bash -c "echo 44; sleep 2; kill -11 $$"
expect {
44 {
close
Expand All @@ -67,7 +67,7 @@ proc checkProcessReturnedCodeTest {} {
}

# same, without close. should get to segv
spawn /bin/bash -c "echo 44; sleep 2s; kill -11 $$"
spawn /bin/bash -c "echo 44; sleep 2; kill -11 $$"
expect {
44 {
puts "not closing"
Expand Down