diff --git a/.github/workflows/ios_build.yml b/.github/workflows/ios_build.yml index e947b602907d6..b9f386421fc2a 100644 --- a/.github/workflows/ios_build.yml +++ b/.github/workflows/ios_build.yml @@ -213,20 +213,21 @@ jobs: $([ -z $GITHUB_TOKEN ] || echo "--config=remote-ci-macos") \ --remote_header="Authorization=Bearer $GITHUB_TOKEN" \ //examples/objective-c/hello_world:app + # TODO(jpsim): Re-enable running the app # Run the app in the background and redirect logs. - - name: 'Run app' - if: steps.should_run.outputs.run_ci_job == 'true' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - cd mobile && ./bazelw run \ - --config=ios \ - $([ -z $GITHUB_TOKEN ] || echo "--config=remote-ci-macos") \ - --remote_header="Authorization=Bearer $GITHUB_TOKEN" \ - //examples/objective-c/hello_world:app &> /tmp/envoy.log & - - run: sed '/received headers with status 200/q' <(touch /tmp/envoy.log && tail -F /tmp/envoy.log) - if: steps.should_run.outputs.run_ci_job == 'true' - name: 'Check connectivity' - - run: cat /tmp/envoy.log - if: ${{ failure() || cancelled() }} - name: 'Log app run' + # - name: 'Run app' + # if: steps.should_run.outputs.run_ci_job == 'true' + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # run: | + # cd mobile && ./bazelw run \ + # --config=ios \ + # $([ -z $GITHUB_TOKEN ] || echo "--config=remote-ci-macos") \ + # --remote_header="Authorization=Bearer $GITHUB_TOKEN" \ + # //examples/objective-c/hello_world:app &> /tmp/envoy.log & + # - run: sed '/received headers with status 200/q' <(touch /tmp/envoy.log && tail -F /tmp/envoy.log) + # if: steps.should_run.outputs.run_ci_job == 'true' + # name: 'Check connectivity' + # - run: cat /tmp/envoy.log + # if: ${{ failure() || cancelled() }} + # name: 'Log app run'