From f948b908ecafec4e3adc87b7405a7decb2d52649 Mon Sep 17 00:00:00 2001 From: A2 Geek Date: Mon, 17 Nov 2025 11:20:02 -0600 Subject: [PATCH] Set GRADLE_OPTS for nativeCompile step Add environment variable for Windows compatibility. --- .github/workflows/nativeCompile.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nativeCompile.yml b/.github/workflows/nativeCompile.yml index 3693fd6..b927f0a 100644 --- a/.github/workflows/nativeCompile.yml +++ b/.github/workflows/nativeCompile.yml @@ -46,7 +46,10 @@ jobs: # Therefore, we try to find runners that fit our targets (see above). - name: Build 'acdasm' run: ./gradlew nativeCompile - + env: + # Needed for Windows; not an issue for other OSes + GRADLE_OPTS: -Djava.io.tmpdir=${{ runner.temp }} + - name: Upload binary uses: actions/upload-artifact@v4 with: