From 45cb7525eb7387a5347df2308b7c5297747d53f0 Mon Sep 17 00:00:00 2001 From: Edward Evans Date: Fri, 23 Aug 2024 11:16:15 -0500 Subject: [PATCH] Bump openjdk version to 11 This commit resolves an unusual bug where pytest fails to collect the results of the jep test, resulting in failing CI jobs. I was able to reproduce this locally, sometimes, with openjdk=8. There must be a race condition involved with the bug as it doesn't always fail. The crash is a seg fault. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index daeadfe..924b789 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/setup-java@v3 with: - java-version: '8' + java-version: '11' distribution: 'zulu' cache: 'maven'