Skip to content

Commit 1fd27e8

Browse files
authored
osx: patch for XCode 12 (#8)
1 parent d853b74 commit 1fd27e8

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/release.yaml

+12-1
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,20 @@ jobs:
2525
repository: envoyproxy/envoy
2626
ref: ${{ steps.tagName.outputs.tag }}
2727

28+
- name: XCode 12 Patching
29+
# https://github.com/Homebrew/homebrew-core/pull/81490
30+
run: |
31+
curl 'https://github.com/envoyproxy/envoy/commit/3b49166dc0841b045799e2c37bdf1ca9de98d5b1.patch?full_index=1' | git am
32+
2833
- name: build
2934
run: |
30-
bazelisk build --curses=no --show_task_finish --verbose_failures --action_env=PATH=/usr/local/bin:/opt/local/bin:/usr/bin:/bin:$PATH --test_output=all -c "opt" //source/exe:envoy-static --config=sizeopt
35+
bazelisk build \
36+
--curses=no \
37+
--show_task_finish \
38+
--verbose_failures \
39+
--action_env=PATH=/usr/local/bin:/opt/local/bin:/usr/bin:/bin:$PATH \
40+
-c "opt" //source/exe:envoy-static --config=sizeopt
41+
3142
mv bazel-bin/source/exe/envoy-static envoy-darwin-amd64
3243
3344
- name: shasum

0 commit comments

Comments
 (0)