Skip to content
Open
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: 3 additions & 3 deletions jenkins/Jenkinsfile-windows
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ pipeline {
}

environment {

PATH = "C:\\WINDOWS\\SYSTEM32"
}
// Set JAVA_HOME to point to JDK 17, and add its bin directory to the PATH
JAVA_HOME = 'C:\\Program Files\\Microsoft\\jdk-17.0.13.11-hotspot'
PATH = "${JAVA_HOME}\\bin;${env.PATH}"

stages {
stage('Build') {
Expand Down