From fa7b59e62880c9644e7d16ac87711d39bdc75ad3 Mon Sep 17 00:00:00 2001 From: enfein <83481737+enfein@users.noreply.github.com> Date: Sat, 11 Feb 2023 04:08:16 +0000 Subject: [PATCH] Fix libcore compile error --- .github/workflows/debug.yml | 4 +++- .github/workflows/debug_apk.yml | 4 +++- .github/workflows/release.yml | 6 ++++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index cfc89a0e..8d22313c 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -47,7 +47,9 @@ jobs: uses: actions/setup-go@v3 if: steps.cache.outputs.cache-hit != 'true' with: - go-version: ${{ steps.version.outputs.go_version }} + # Bug: https://github.com/golang/go/issues/58426 + # go-version: ${{ steps.version.outputs.go_version }} + go-version: 1.19.5 - name: Native Build if: steps.cache.outputs.cache-hit != 'true' run: ./run lib core diff --git a/.github/workflows/debug_apk.yml b/.github/workflows/debug_apk.yml index 16760564..dfffda7e 100644 --- a/.github/workflows/debug_apk.yml +++ b/.github/workflows/debug_apk.yml @@ -27,7 +27,9 @@ jobs: uses: actions/setup-go@v3 if: steps.cache.outputs.cache-hit != 'true' with: - go-version: ${{ steps.version.outputs.go_version }} + # Bug: https://github.com/golang/go/issues/58426 + # go-version: ${{ steps.version.outputs.go_version }} + go-version: 1.19.5 - name: Gradle cache uses: actions/cache@v3 if: steps.cache.outputs.cache-hit != 'true' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ac43271..d42e73ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,9 @@ jobs: uses: actions/setup-go@v3 if: steps.cache.outputs.cache-hit != 'true' with: - go-version: ${{ steps.version.outputs.go_version }} + # Bug: https://github.com/golang/go/issues/58426 + # go-version: ${{ steps.version.outputs.go_version }} + go-version: 1.19.5 - name: Gradle cache uses: actions/cache@v3 if: steps.cache.outputs.cache-hit != 'true' @@ -206,4 +208,4 @@ jobs: ${{ secrets.ANDROID_PUBLISHER_CREDENTIALS }}" EOF ./run init action library - ./gradlew app:publishPlayReleaseBundle \ No newline at end of file + ./gradlew app:publishPlayReleaseBundle