Skip to content
This repository was archived by the owner on Nov 10, 2023. It is now read-only.

Commit d599cf5

Browse files
authored
Fix missing JAVA_HOME on macos (#2698)
* Fix missing JAVA_HOME on macos This is really hacky, but let's see if this fixes the jobs before I try a more invasive solution * Fix other places where openjdk is hardcoded
1 parent a8e25cb commit d599cf5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ macos_environment: &macos_environment
197197
TERM: "dumb"
198198
BUCK_NUM_THREADS: 3
199199
BUCK_PEX_LOCATION: "./new_buck.pex"
200-
JAVA_HOME: "/usr/local/Cellar/openjdk@8/1.8.0+312"
200+
JAVA_HOME: "/usr/local/Cellar/openjdk@8/1.8.0+322"
201201

202202
windows_environment: &windows_environment
203203
PLATFORM: "windows"
@@ -1004,7 +1004,7 @@ jobs:
10041004
export PATH="${ANDROID_SDK}/tools/bin:${PATH}"
10051005
export PATH="$(pyenv root)/shims:${PATH}"
10061006
export GROOVY_HOME="$HOME/.sdkman/candidates/groovy/current"
1007-
export JAVA_HOME="/usr/local/Cellar/openjdk@8/1.8.0+312"
1007+
export JAVA_HOME="/usr/local/Cellar/openjdk@8/1.8.0+322"
10081008
export PATH="${JAVA_HOME}/bin:${PATH}"
10091009
source ~/dlang/dmd-2.091.0/activate
10101010
export PATH="${HOME}/.cargo/bin:${PATH}"
@@ -1062,7 +1062,7 @@ jobs:
10621062
command: |
10631063
export NDK_HOME="${HOME}/android-ndk-${PLATFORM}"
10641064
export ANDROID_HOME="${ANDROID_SDK}"
1065-
export JAVA_HOME="/usr/local/Cellar/openjdk@8/1.8.0+312"
1065+
export JAVA_HOME="/usr/local/Cellar/openjdk@8/1.8.0+322"
10661066
export PATH="${JAVA_HOME}/bin:${PATH}"
10671067
source ~/dlang/dmd-2.091.0/activate
10681068
export PATH="${HOME}/.cargo/bin:${PATH}"

0 commit comments

Comments
 (0)