Skip to content

Commit 5753cc8

Browse files
committed
Update toolchain paths for the Android cross-compiler
1 parent e99978d commit 5753cc8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ jobs:
2222
run: |
2323
yes | "${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager" --licenses
2424
./gradlew --warning-mode 'all' --no-daemon clean
25-
- name: Install Pino
25+
- name: Install android-gcc-cross
2626
run: |
27-
declare -r PINO_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Pino/releases/latest')")"
27+
declare -r PINO_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/android-gcc-cross/releases/latest')")"
2828
declare -r PINO_TARBALL='/tmp/toolchain.tar.xz'
29-
declare -r PINO_URL="https://github.com/AmanoTeam/Pino/releases/download/${PINO_TAG}/x86_64-unknown-linux-gnu.tar.xz"
29+
declare -r PINO_URL="https://github.com/AmanoTeam/android-gcc-cross/releases/download/${PINO_TAG}/x86_64-unknown-linux-gnu.tar.xz"
3030
3131
curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --location --url "${PINO_URL}" --output "${PINO_TARBALL}"
3232
tar --directory="$(dirname "${PINO_TARBALL}")" --extract --file="${PINO_TARBALL}"
3333
34-
echo '/tmp/pino/bin' >> "${GITHUB_PATH}"
34+
echo '/tmp/android-gcc-cross/bin' >> "${GITHUB_PATH}"
3535
- name: Patch the NDK
3636
run: |
3737
ndk-patch

0 commit comments

Comments
 (0)