Skip to content

Commit beace39

Browse files
committed
ci: downgrade Trezor sim builder to Ubuntu 22.04
The build on ubuntu-latest succeeds, but the resulting binary uses a too recent version of glibc for the test runners to handle. This only seems to impact Trezor 1, but just downgrade for Trezor T as well.
1 parent 96a3e53 commit beace39

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,10 @@ jobs:
144144

145145
sim-builder-trezor:
146146
name: Trezor sim builder
147-
runs-on: ubuntu-latest
147+
# Ubuntu 22.04 ships with glibc 2.35, which is needed to keep Trezor 1
148+
# binaries compatible with Debian Bookworm (glibc 2.36) Python containers.
149+
# Trezor T binaries don't need this.
150+
runs-on: ubuntu-22.04
148151

149152
strategy:
150153
fail-fast: false

0 commit comments

Comments
 (0)