Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,12 @@ jobs:
env:
# MUST match GRADLE_USER_HOME in .github/ci-image/jvm-test.Dockerfile.
GRADLE_USER_HOME: /opt/gradle-home
# The image drops /usr/share/locale, so the JVM inherits an ASCII `sun.jnu.encoding` and cannot create
# a file whose name is not ASCII — `DiffPresenterIsWithinRootTest` writes `fïle ñ.txt` and dies with
# FileNotFoundException. This gate runs the SAME suite as ci.yml, so it needs the SAME locale: a job
# that runs `test` without this is green on the branch and red on the release. `C.UTF-8` is built into
# glibc, so it needs no image rebuild.
LANG: C.UTF-8
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
Expand Down
Loading