mirror of
https://github.com/apple/container.git
synced 2026-09-23 16:15:37 +00:00
Select macOS 26 CI runners. (#1074)
- Runner fleet is on 26.3 now. - Integration tests started flaking and it appears that we've been misconfiguring/not configuring proxy variables where we needed to be and it finally caught up with us. Workflow now adds appropriate exclusions for host-to-container and container-to-container network requests so they aren't all rammed through the proxy.
This commit is contained in:
@@ -16,7 +16,7 @@ jobs:
|
||||
name: Build and test the project
|
||||
if: github.repository == 'apple/container'
|
||||
timeout-minutes: 60
|
||||
runs-on: [self-hosted, macos, sequoia, ARM64]
|
||||
runs-on: [self-hosted, macos, tahoe, ARM64]
|
||||
permissions:
|
||||
contents: read
|
||||
packages: read
|
||||
@@ -73,6 +73,10 @@ jobs:
|
||||
APP_ROOT=$(mktemp -d -p "${RUNNER_TEMP}")
|
||||
trap 'rm -rf "${APP_ROOT}"; echo Removing data directory ${APP_ROOT}' EXIT
|
||||
echo "Created data directory ${APP_ROOT}"
|
||||
export NO_PROXY="${NO_PROXY},192.168.0.0/16,fe80::/10"
|
||||
echo NO_PROXY=${NO_PROXY}
|
||||
export no_proxy="${no_proxy},192.168.0.0/16,fe80::/10"
|
||||
echo no_proxy=${no_proxy}
|
||||
make APP_ROOT="${APP_ROOT}" test install-kernel integration
|
||||
env:
|
||||
DEVELOPER_DIR: "/Applications/Xcode-latest.app/Contents/Developer"
|
||||
|
||||
Reference in New Issue
Block a user