-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJenkinsfile.post-pricemap
41 lines (41 loc) · 1.01 KB
/
Jenkinsfile.post-pricemap
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
podTemplate(yaml: """
kind: Pod
spec:
containers:
- name: app
image: docker-registry:5000/intermittency:${env.TAG}
command: ['/bin/cat']
tty: true
envFrom:
- secretRef:
name: intermittency-${env.BRANCH_NAME}
resources:
requests:
memory: "1Gi"
cpu: "1"
"""
) {
node(POD_LABEL) {
container('app') {
stage('rake entsoe:price_api') {
sh "cd /app ; rake entsoe:price_api"
}
stage('grafanimate') {
sh "mkdir /app/render"
sh "cd /app ; ruby scripts/grafanimate-pricemap.rb"
sh "cd /app ; ruby scripts/grafanimate-pricemap-render.rb"
sh "cp /app/render.mp4 ."
archiveArtifacts 'render.mp4'
}
if (currentBuild.getBuildCauses()[0].userId != null) {
input 'Publish result?'
}
stage('grafanimate-upload-x.rb') {
sh "cd /app ; ruby scripts/grafanimate-upload-x.rb"
}
stage('grafanimate-upload-bsky.rb') {
sh "cd /app ; ruby scripts/grafanimate-upload-bsky.rb"
}
}
}
}