Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: 'Build envoy.aar distributable'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO(jpsim): Re-enable remote exec - https://github.com/envoyproxy/envoy-mobile/issues/2343
run: |
./bazelw build \
--config=remote-ci-macos \
--remote_header="Authorization=Bearer $GITHUB_TOKEN" \
--config=android \
--fat_apk_cpu=x86_64 \
//:android_dist
javahelloworld:
Expand All @@ -54,10 +54,10 @@ jobs:
- name: 'Start java app'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO(jpsim): Re-enable remote exec - https://github.com/envoyproxy/envoy-mobile/issues/2343
run: |
./bazelw build \
--config=remote-ci-macos \
--remote_header="Authorization=Bearer $GITHUB_TOKEN" \
--config=android \
--fat_apk_cpu=x86_64 \
//examples/java/hello_world:hello_envoy
adb install -r --no-incremental bazel-bin/examples/java/hello_world/hello_envoy.apk
Expand Down Expand Up @@ -87,10 +87,10 @@ jobs:
- name: 'Start kotlin app'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO(jpsim): Re-enable remote exec - https://github.com/envoyproxy/envoy-mobile/issues/2343
run: |
./bazelw build \
--config=remote-ci-macos \
--remote_header="Authorization=Bearer $GITHUB_TOKEN" \
--config=android \
--fat_apk_cpu=x86_64 \
//examples/kotlin/hello_world:hello_envoy_kt
adb install -r --no-incremental bazel-bin/examples/kotlin/hello_world/hello_envoy_kt.apk
Expand Down Expand Up @@ -120,10 +120,10 @@ jobs:
- name: 'Start kotlin app'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO(jpsim): Re-enable remote exec - https://github.com/envoyproxy/envoy-mobile/issues/2343
run: |
./bazelw build \
--config=remote-ci-macos \
--remote_header="Authorization=Bearer $GITHUB_TOKEN" \
--config=android \
--fat_apk_cpu=x86_64 \
//test/kotlin/apps/baseline:hello_envoy_kt
adb install -r --no-incremental bazel-bin/test/kotlin/apps/baseline/hello_envoy_kt.apk
Expand Down Expand Up @@ -153,10 +153,10 @@ jobs:
- name: 'Start kotlin app'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO(jpsim): Re-enable remote exec - https://github.com/envoyproxy/envoy-mobile/issues/2343
run: |
./bazelw build \
--config=remote-ci-macos \
--remote_header="Authorization=Bearer $GITHUB_TOKEN" \
--config=android \
--fat_apk_cpu=x86_64 \
//test/kotlin/apps/experimental:hello_envoy_kt
adb install -r --no-incremental bazel-bin/test/kotlin/apps/experimental/hello_envoy_kt.apk
Expand Down