From 4398823dc49df28c9669830fff2826e65db8a159 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Fri, 9 Dec 2022 16:32:11 -0500 Subject: [PATCH] ci: disable running the Objective-C integration app Failing due to a missing extension: https://envoyproxy.slack.com/archives/C02F93EEJCE/p1670613863641819 Signed-off-by: JP Simard --- .github/workflows/ios_build.yml | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) 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'