From 7d24c1168c20ee4b1217e417756cab61c98c7f3c Mon Sep 17 00:00:00 2001 From: timo <44401485+Timo972@users.noreply.github.com> Date: Mon, 15 Jun 2026 20:21:13 +0200 Subject: [PATCH] ci: drop SOCKS5 tunnel xcframework build from prebuild workflow prebuild-r2.yml (merged in #13) runs on master, which has no SOCKS5 tunnel: no hev-socks5-tunnel submodule, no WebDriverAgentTunnel target, no Scripts/build-hev-socks5-tunnel.sh (those live on the unmerged timo/socks5-vpn branch). The "Build SOCKS5 tunnel xcframework" steps reference a script that does not exist and would fail the build-real / build-sim jobs on the first run. The same fix merged in #14, but that PR targeted the feature branch instead of master, so it never reached master. Reapply it here. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/prebuild-r2.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/prebuild-r2.yml b/.github/workflows/prebuild-r2.yml index 67f040cc9..52f4d4b62 100644 --- a/.github/workflows/prebuild-r2.yml +++ b/.github/workflows/prebuild-r2.yml @@ -58,12 +58,6 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: "${{ env.XCODE_VERSION }}" - # The iOS runner links HevSocks5Tunnel.xcframework via the - # WebDriverAgentTunnel appex; build it from the submodule first - # (idempotent/stamped). tvOS does not link the tunnel. - - name: Build SOCKS5 tunnel xcframework - if: ${{ matrix.ios }} - run: bash "$GITHUB_WORKSPACE/Scripts/build-hev-socks5-tunnel.sh" - name: Build & zip ${{ matrix.scheme }}-Runner.app run: sh "$GITHUB_WORKSPACE/Scripts/ci/build-real.sh" env: @@ -110,9 +104,6 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: "${{ env.XCODE_VERSION }}" - - name: Build SOCKS5 tunnel xcframework - if: ${{ matrix.ios }} - run: bash "$GITHUB_WORKSPACE/Scripts/build-hev-socks5-tunnel.sh" - name: Build & zip WebDriverAgentRunner${{ matrix.target }} (simulator) run: | DESTINATION="$DESTINATION_SIM${{ matrix.target }}" sh "$GITHUB_WORKSPACE/Scripts/ci/build-sim.sh"