Skip to content

Commit

Permalink
ci: Dont setup docker on macos (#36329)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax authored Sep 25, 2024
1 parent 039ac1d commit c33935e
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/_mobile_container_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ jobs:
container-output: ${{ inputs.container-output }}
command: ${{ inputs.command }}
concurrency-suffix: ${{ inputs.concurrency-suffix }}
docker-ipv6: false
entrypoint: ${{ inputs.entrypoint || inputs.entrypoint-DEFAULT }}
downloads: ${{ inputs.downloads }}
error-match: ${{ inputs.error-match }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/_run.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Envoy CI
11;rgb:fdfd/f6f6/e3e3name: Envoy CI

permissions:
contents: read
Expand Down Expand Up @@ -53,6 +53,9 @@ on:
diskspace-hack-paths:
type: string
default:
docker-ipv6:
default: true
type: boolean
downloads:
type: string
entrypoint:
Expand Down Expand Up @@ -259,6 +262,7 @@ jobs:
"fixed-cidr-v6": "2001:db8:1::/64"
}' | sudo tee /etc/docker/daemon.json
sudo service docker restart
if: ${{ inputs.docker-ipv6 }}
- run: |
echo "e3b4a6e9570da15ac1caffdded17a8bebdc7dfc9" > .BAZEL_FAKE_SCM_REVISION
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/envoy-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
with:
command:
container-command:
docker-ipv6: false
request: ${{ needs.load.outputs.request }}
runs-on: macos-14-xlarge
source: ${{ matrix.source }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/mobile-android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
with:
command: ./bazelw
container-command:
docker-ipv6: false
# Return to using:
# ./bazelw mobile-install --fat_apk_cpu=x86_64 --start_app //examples/kotlin/hello_world:hello_envoy_kt
# When https://github.com/envoyproxy/envoy-mobile/issues/853 is fixed.
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/mobile-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
path: mobile-docs
fetch-depth: 0
branch: master
docker-ipv6: false
source: |
echo "ENVOY_DOCKER_SOURCE_DIR=/source/mobile" >> $GITHUB_ENV
# Path relative to ./mobile directory
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/mobile-ios_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
args: ${{ matrix.args }}
command: ./bazelw
container-command:
docker-ipv6: false
request: ${{ needs.load.outputs.request }}
runs-on: macos-12-large
source: |
Expand Down Expand Up @@ -80,6 +81,7 @@ jobs:
${{ matrix.app }}
command: ./bazelw
container-command:
docker-ipv6: false
request: ${{ needs.load.outputs.request }}
runs-on: macos-12-large
source: |
Expand Down Expand Up @@ -125,6 +127,7 @@ jobs:
${{ matrix.app }}
command: ./bazelw
container-command:
docker-ipv6: false
request: ${{ needs.load.outputs.request }}
runs-on: macos-12-large
source: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/mobile-ios_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
args: ${{ matrix.args }}
command: ./bazelw
container-command:
docker-ipv6: false
request: ${{ needs.load.outputs.request }}
runs-on: macos-12
source: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/mobile-release_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
//:ios_xcframework
command: ./bazelw
container-command:
docker-ipv6: false
request: ${{ needs.load.outputs.request }}
runs-on: macos-12
source: |
Expand Down

0 comments on commit c33935e

Please sign in to comment.