Skip to content

Commit fe1117f

Browse files
committed
go: downgrade from Go 1.23 to 1.22 to fix an Android bug
Android app compiled with 1.23.2 or 1.23.3 crashes on old Android verisons (verified crash on Android 9 and Android 10). Until Go is fixed, we downgrade to the prevoius version we used that works.
1 parent 95c0c41 commit fe1117f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
# https://docs.github.com/en/packages/guides/pushing-and-pulling-docker-images
2626
#
2727
# Keep this in sync with default in scripts/github-ci.sh.
28-
CI_IMAGE: ghcr.io/bitboxswiss/bitbox-wallet-app-ci:25
28+
CI_IMAGE: ghcr.io/bitboxswiss/bitbox-wallet-app-ci:26
2929
GITHUB_BUILD_DIR: ${{github.workspace}}
3030

3131
jobs:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/BitBoxSwiss/bitbox-wallet-app
22

3-
go 1.23
3+
go 1.22
44

55
require (
66
github.com/BitBoxSwiss/bitbox02-api-go v0.0.0-20240925080402-a2115fee878e

scripts/docker_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ npm install -g npm@10
8181
npm install -g locize-cli
8282

8383
mkdir -p /opt/go_dist
84-
curl https://dl.google.com/go/go1.23.2.linux-amd64.tar.gz | tar -xz -C /opt/go_dist
84+
curl https://dl.google.com/go/go1.22.4.linux-amd64.tar.gz | tar -xz -C /opt/go_dist
8585

8686
# fuse is needed to run the linuxdeployqt appimage.
8787
apt-get install -y --no-install-recommends fuse

scripts/github-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [ "$OS_NAME" == "linux" ]; then
1212
# Which docker image to use to run the CI. Defaults to Docker Hub.
1313
# Overwrite with CI_IMAGE=docker/image/path environment variable.
1414
# Keep this in sync with .github/workflows/ci.yml.
15-
: "${CI_IMAGE:=shiftcrypto/bitbox-wallet-app:25}"
15+
: "${CI_IMAGE:=shiftcrypto/bitbox-wallet-app:26}"
1616
# Time image pull to compare in the future.
1717
time docker pull "$CI_IMAGE"
1818

0 commit comments

Comments
 (0)