forked from spring-projects/spring-guice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.yml
129 lines (124 loc) · 3.42 KB
/
pipeline.yml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# fly --target team login --concourse-url https://ci.spring.io --team-name "Spring Team"
# fly --target team set-pipeline --config pipeline.yml --pipeline spring-guice --load-vars-from credentials.yml
---
resource_types:
- name: slack-notification
type: registry-image
source:
repository: harbor-repo.vmware.com/dockerhub-proxy-cache/nebhale/slack-notification-resource
tag: latest
resources:
- name: source
type: git
source:
uri: https://github.com/spring-projects/spring-guice.git
- name: slack
type: slack-notification
source:
url: {{slack-url}}
slack-failure: &slack-failure
put: slack
params:
attachments:
- color: danger
fallback: "$BUILD_PIPELINE_NAME/$BUILD_JOB_NAME #$BUILD_NAME <FAILURE>"
text: "<!here> Build has failed"
title: "$BUILD_PIPELINE_NAME/$BUILD_JOB_NAME #$BUILD_NAME"
title_link: $ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
slack-success: &slack-success
put: slack
params:
attachments:
- color: good
fallback: "$BUILD_PIPELINE_NAME/$BUILD_JOB_NAME #$BUILD_NAME <SUCCESS>"
text: "Build has succeeded"
title: "$BUILD_PIPELINE_NAME/$BUILD_JOB_NAME #$BUILD_NAME"
title_link: $ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
jobs:
- name: build
plan:
- get: source
trigger: true
- task: build
config:
platform: linux
image_resource:
type: registry-image
source:
repository: harbor-repo.vmware.com/dockerhub-proxy-cache/springci/spring-framework-ci
tag: 5.3.x
inputs:
- name: source
caches:
- path: source/.m2
run:
dir: source
path: sh
args:
- -c
- |
rm -rf ~/.m2
ln -s $(pwd)/.m2 ~/.m2
./mvnw install
- name: next
plan:
- get: source
trigger: true
- task: build
config:
platform: linux
image_resource:
type: registry-image
source:
repository: harbor-repo.vmware.com/dockerhub-proxy-cache/springci/spring-framework-ci
tag: 6.0.x
inputs:
- name: source
caches:
- path: source/.m2
run:
dir: source
path: sh
args:
- -c
- |
rm -rf ~/.m2
ln -s $(pwd)/.m2 ~/.m2
./mvnw install -Dspring.version=6.0.3
- name: deploy
plan:
- get: source
trigger: true
passed: [build, next]
- task: deploy
config:
platform: linux
image_resource:
type: registry-image
source:
repository: harbor-repo.vmware.com/dockerhub-proxy-cache/springci/spring-framework-ci
tag: 5.3.x
inputs:
- name: source
caches:
- path: source/.m2
run:
dir: source
path: sh
args:
- -c
- |
rm -rf ~/.m2
ln -s $(pwd)/.m2 ~/.m2
echo "((signing-key))" > private.asc
gpg --import --batch --no-tty private.asc
./mvnw deploy -DskipTests -s .mvn/settings.xml
params:
TERM: dumb
passphrase: ((signing-passphrase))
sonatype_username: ((sonatype-username))
sonatype_password: ((sonatype-password))
spring_username: ((artifactory-username))
spring_password: ((artifactory-password))
on_failure: *slack-failure
on_success: *slack-success