From c2470eaeb0db3bb999d2520f1e9f299fb5be78ad Mon Sep 17 00:00:00 2001 From: timo <44401485+Timo972@users.noreply.github.com> Date: Mon, 15 Jun 2026 20:12:27 +0200 Subject: [PATCH] ci: drop SOCKS5 tunnel xcframework build from prebuild workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hev-socks5-tunnel submodule and HevSocks5Tunnel.xcframework live on the unmerged timo/socks5-vpn branch, not on master. prebuild-r2.yml (added in #13) is master-based, where WebDriverAgentRunner does not link the WebDriverAgentTunnel appex, there is no .gitmodules, and Scripts/build-hev-socks5-tunnel.sh does not exist — so the "Build SOCKS5 tunnel xcframework" steps would fail the build immediately. Remove them. build-real.sh / build-sim.sh build the runner schemes directly with no tunnel dependency on master. 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"