Jenkinsfile + gitignore
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good
This commit is contained in:
parent
61124b55c1
commit
e605a82df6
3
.gitignore
vendored
3
.gitignore
vendored
@ -7,4 +7,5 @@
|
||||
/.project
|
||||
/.vscode
|
||||
/shared-folder
|
||||
/shared-folder/**
|
||||
/shared-folder/**
|
||||
/src/main/c/lib/**
|
||||
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
pipeline {
|
||||
agent any
|
||||
tools {
|
||||
maven '3.9.6'
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'mvn --version'
|
||||
sh 'java -version'
|
||||
sh 'git submodule init'
|
||||
sh 'git submodule update'
|
||||
sh 'mvn clean generate-resources package'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user