Jenkins test
This commit is contained in:
parent
7d7cdaffdf
commit
b12383b97a
18
Jenkinsfile
vendored
18
Jenkinsfile
vendored
@ -1,18 +1,16 @@
|
||||
node {
|
||||
def app
|
||||
stage('Clone') { // for display purposes
|
||||
// Get some code from a GitHub repository
|
||||
echo env.BRANCH_NAME
|
||||
// Get some code from a GitHub repository
|
||||
echo env.BRANCH_NAME
|
||||
script {
|
||||
if (env.BRANCH_NAME == 'master') {
|
||||
git url: 'https://github.com/BrokenFire/BrokenDiscordBot.git', branch: 'master'
|
||||
} else {
|
||||
git url: 'https://github.com/BrokenFire/BrokenDiscordBot.git', branch: 'devel'
|
||||
}
|
||||
if (env.BRANCH_NAME == 'master') {
|
||||
git url: 'https://github.com/BrokenFire/BrokenDiscordBot.git', branch: 'master'
|
||||
} else {
|
||||
git url: 'https://github.com/BrokenFire/BrokenDiscordBot.git', branch: 'devel'
|
||||
}
|
||||
}
|
||||
|
||||
git url: 'https://github.com/BrokenFire/BrokenDiscordBot.git', branch: 'env.BRANCH_NAME'
|
||||
|
||||
}
|
||||
stage('Gradle Buil'){
|
||||
build job: 'Bot Discord Gradle', wait: true
|
||||
@ -29,7 +27,7 @@ node {
|
||||
* Second, the 'latest' tag.
|
||||
* Pushing multiple tags is cheap, as all the layers are reused. */
|
||||
script {
|
||||
if (${env.BRANCH} == 'master') {
|
||||
if (env.BRANCH_NAME == 'master') {
|
||||
app.push()
|
||||
} else {
|
||||
app.push("devel")
|
||||
|
Loading…
Reference in New Issue
Block a user