Skip to content

Commit

Permalink
macos android ci(perf): don't use built in java
Browse files Browse the repository at this point in the history
  • Loading branch information
mribbons committed Apr 18, 2023
1 parent c229b44 commit cd4374b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,22 @@ jobs:
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Android FTE
run: |
./bin/android-functions.sh --android-fte --yes-deps
VERBOSE: 1
NO_IOS: 1
CI: true
SSC_ANDROID_CI: true
ANDROID_SUPPORTED_ABIS: x86_64
NODE_AUTH_TOKEN: ${{ secrets.PACKAGE_PAT }}

- name: install Socket Runtime deps
run: |
brew install automake
- name: Build Socket Runtime
run: |
./bin/android-functions.sh --android-fte --yes-deps
./bin/install.sh
./bin/ci_version_check.sh
env:
Expand Down
1 change: 1 addition & 0 deletions bin/android-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,7 @@ function android_fte() {
local set_exit_code=""

[[ -n "$android_fte" ]] && return 0
[[ -n "$CI" ]] && export JAVA_HOME=""

while (( $# > 0 )); do
declare arg="$1"; shift
Expand Down

0 comments on commit cd4374b

Please sign in to comment.