Skip to content

Commit

Permalink
2022.1 code drop.
Browse files Browse the repository at this point in the history
  • Loading branch information
ppiorunski committed Sep 29, 2022
1 parent 6574683 commit dd0347f
Show file tree
Hide file tree
Showing 354 changed files with 22,503 additions and 22,996 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

.idea/
target/
gradle/

*.iml

3 changes: 3 additions & 0 deletions .p4ignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.gitattributes
.idea/
build/
.gradle/
*.class

# Package Files #
Expand All @@ -22,6 +24,7 @@ target/
*.iml

.p4config
.p4tickets
.gitignore
.DS_Store
*.versionsBackup
Expand Down
83 changes: 83 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
pipeline {

agent none

stages {

stage('Compile') {
agent {
label 'p4java'
}
steps {
sh './gradlew clean assemble'

}
}

stage('Verification') {
parallel {

stage('ubuntu') {
agent {
label 'p4java'
}
stages {
stage('Test') {
steps {
lock("eng-p4java-vm_lock") {
sh './gradlew clean build'

}
}
}
}
post {
always {
report('UbuntuTestReport')

}
}
}

stage('win') {
agent {
label 'p4java-win'
}
stages {
stage('Test') {
steps {
lock("eng-p4java-vm_lock") {
bat label: '', script: 'gradlew clean build'

}
}
}
}
post {
always {
report('WindowsTestReport')
}
}
}
}
}

stage('Launch system tests') {
steps {
build job: '/p4java-system-tests/main', wait: false
}
}
}
}


void report(String name) {
publishHTML target: [
allowMissing : false,
alwaysLinkToLastBuild: true,
keepAll : true,
reportDir : 'build/reports/tests/test/',
reportFiles : 'index.html',
reportName : name
]
}
Loading

0 comments on commit dd0347f

Please sign in to comment.