Skip to content

Commit

Permalink
Merge pull request #10 from Yoshi2889/feature/jenkins
Browse files Browse the repository at this point in the history
Add Jenkinsfile
  • Loading branch information
NanoSector authored Mar 25, 2021
2 parents 071c02b + dee4a98 commit 1712662
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
properties([
parameters([
string(name: 'configuration', defaultValue: 'Release'),
])
])

pipeline {
agent {label 'mac'}
stages {
stage("Build") {
steps {
sh "/usr/bin/xcodebuild -workspace Brewed.xcodeproj/project.xcworkspace -scheme Brewed -configuration '${params.configuration}' clean build DEVELOPMENT_TEAM=''"
}
}
}
}

0 comments on commit 1712662

Please sign in to comment.