-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathJenkinsfile
91 lines (79 loc) · 2.93 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
def gitBranch = env.BRANCH_NAME
def gitURL = "[email protected]:Memphisdev/memphis.net.git"
def repoUrlPrefix = "memphisos"
node ("memphis-jenkins-small-fleet-agent") {
git credentialsId: 'main-github', url: gitURL, branch: gitBranch
if (env.BRANCH_NAME ==~ /(master)/) {
versionTag = readFile "./version-beta.conf"
}
else {
versionTag = readFile "./version.conf"
}
try{
stage('Install .NET SDK') {
sh """
wget https://dot.net/v1/dotnet-install.sh
chmod +x dotnet-install.sh
./dotnet-install.sh -c STS
"""
}
stage('Build project'){
sh """
~/.dotnet/dotnet build -c Release src/Memphis.Client.sln
"""
}
stage('Package the project'){
sh """
~/.dotnet/dotnet pack -v normal -c Release --no-restore --include-source /p:ContinuousIntegrationBuild=true -p:PackageVersion=$versionTag src/Memphis.Client/Memphis.Client.csproj
"""
}
stage('Publish to NuGet'){
withCredentials([string(credentialsId: 'NUGET_KEY', variable: 'NUGET_KEY')]) {
sh """
~/.dotnet/dotnet nuget push ./src/Memphis.Client/bin/Release/Memphis.Client.${versionTag}.nupkg --source https://api.nuget.org/v3/index.json --api-key $NUGET_KEY
"""
}
}
if (env.BRANCH_NAME ==~ /(latest)/) {
stage('Create new Release'){
sh """
sudo dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo -y
sudo dnf install gh -y
sudo dnf install jq -y
"""
withCredentials([sshUserPrivateKey(keyFileVariable:'check',credentialsId: 'main-github')]) {
sh """
git reset --hard origin/latest
GIT_SSH_COMMAND='ssh -i $check' git checkout -b \$(cat version.conf)
GIT_SSH_COMMAND='ssh -i $check' git push --set-upstream origin \$(cat version.conf)
"""
}
withCredentials([string(credentialsId: 'gh_token', variable: 'GH_TOKEN')]) {
sh(script:"""gh release create \$(cat version.conf) --generate-notes""", returnStdout: true)
}
}
}
notifySuccessful()
} catch (e) {
currentBuild.result = "FAILED"
cleanWs()
notifyFailed()
throw e
}
}
def notifySuccessful() {
emailext (
subject: "SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'",
body: """<p>SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
<p>Check console output at "<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>""",
recipientProviders: [[$class: 'DevelopersRecipientProvider']]
)
}
def notifyFailed() {
emailext (
subject: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'",
body: """<p>FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
<p>Check console output at "<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>""",
recipientProviders: [[$class: 'DevelopersRecipientProvider']]
)
}