Skip to content

Commit

Permalink
update Java and install NDK
Browse files Browse the repository at this point in the history
  • Loading branch information
lumpidu committed Feb 6, 2024
1 parent e78178d commit 75b6565
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/dl_3rdparty.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# These are downloaded from their corresponding Github Release pages according to the following
# environment variables:
# OPENFST_TAG, THRAX_TAG, FLITE_THRAX_TAG
# OPENFST_TAG, THRAX_TAG

set -o pipefail
#set -x
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
NDK_VER: 23.1.7779620
steps:
- name: Checkout the code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Decode Keystore
env:
ENCODED_KS: ${{ secrets.KEYSTORE }}
Expand All @@ -23,9 +23,16 @@ jobs:
echo "$ENCODED_KS" | base64 -di > "${TMP_KEYSTORE_FILE_PATH}"/simaromur_ks.jks
ls -al "${TMP_KEYSTORE_FILE_PATH}"
- name: set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 1.11
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- uses: nttld/setup-ndk@v1
with:
ndk-version: r25b
- name: Change wrapper permissions
run: chmod +x ./gradlew
- name: Get CMake
uses: lukka/[email protected]
- name: Install NDK
Expand Down

0 comments on commit 75b6565

Please sign in to comment.