Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
3 changes: 2 additions & 1 deletion .github/workflows/amd64_linux_cmake_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ jobs:
sudo apt update
sudo apt install -y ninja-build ccache swig
swig -version
echo "JAVA_HOME=$JAVA_HOME_21_X64" >> $GITHUB_ENV
- name: Check java
run: java -version
run: $JAVA_HOME/bin/java -version

# RESTORING CACHES
- name: Restore CMake dependency source code
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/amd64_macos_cmake_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ jobs:
run: |
brew install ccache swig
swig -version
echo "JAVA_HOME=$JAVA_HOME_21_X64" >> $GITHUB_ENV
- name: Check java
run: java -version
run: $JAVA_HOME/bin/java -version

# RESTORING CACHES
- name: Restore CMake dependency source code
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/arm64_macos_cmake_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ jobs:
run: |
brew install ccache swig
swig -version
echo "JAVA_HOME=$JAVA_HOME_21_arm64" >> $GITHUB_ENV
- name: Check java
run: java -version
run: $JAVA_HOME/bin/java -version

# RESTORING CACHES
- name: Restore CMake dependency source code
Expand Down
Loading