LibAC/Jenkinsfile

47 lines
797 B
Text
Raw Normal View History

pipeline {
2024-09-06 03:09:26 -07:00
agent any {
tools {
jdk 'jdk8'
}
}
options {
buildDiscarder(
logRotator(
numToKeepStr: '5'
)
)
}
stages {
stage("Build on Linux") {
agent {
label 'linux'
}
2024-09-06 03:03:55 -07:00
steps {
script {
sh '''
#!/bin/bash
2024-09-06 03:01:10 -07:00
java --version
chmod +x gradlew
./gradlew build publish
'''
}
}
post {
always {
archiveArtifacts artifacts: "build/libs/*.jar"
deleteDir()
}
}
}
}
}