-
-
Notifications
You must be signed in to change notification settings - Fork 0
204 lines (176 loc) · 5.91 KB
/
build.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
name: Build
on:
workflow_dispatch:
push:
branches:
- "main"
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- '*.md'
pull_request:
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- '*.md'
env:
JAVA_VERSION: 21
JAVA_DISTRO: temurin
GH_BOT_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
GH_BOT_NAME: "GitHub Action"
GRAALVM_DIST: graalvm-community
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
main-root:
outputs:
is-main: ${{ steps.is-main-root.outputs.test }}
runs-on: ubuntu-latest
steps:
- if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'commonhaus/automation'
id: is-main-root
run: echo "test=true" >> "$GITHUB_OUTPUT"
build:
needs: main-root
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: maven
- name: Generate cache key
id: image-cache-key
run: |
echo "cache_key=build-image-cache-$(/bin/date -u "+%Y-%U")" >> $GITHUB_OUTPUT
- name: Restore cached build image
id: cache-restore
uses: actions/cache/restore@v4
with:
path: build-image/mandrel.tar
key: ${{ steps.image-cache-key.outputs.cache_key }}
- name: Download build image
if: steps.cache-restore.outputs.cache-hit != 'true'
run: |
mkdir -p build-image
docker pull quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-21
docker save quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-21 -o build-image/mandrel.tar
- uses: actions/cache/save@v4
id: cache-save
if: always()
with:
path: build-image/mandrel.tar
key: ${{ steps.image-cache-key.outputs.cache_key }}
- name: Load build image
id: load-build-image
run: |
docker load -i build-image/mandrel.tar
- name: Project metadata
id: metadata
run: |
SNAPSHOT=$(yq '.release.snapshot-version' .github/project.yml)
echo "snapshot=${SNAPSHOT}" >> $GITHUB_OUTPUT
- name: Build with Maven
run: |
./mvnw -B -ntp formatter:validate verify
- name: Build and run in native mode
id: mvn-native-build
env:
MAVEN_OPTS: "-Xmx1g"
run: |
./mvnw -B -ntp verify -DskipTests -DskipFormat \
-Dnative \
-Dquarkus.native.container-build=true \
-Dquarkus.container-image.build=true
- name: Update release with snapshot artifact
if: ${{needs.main-root.outputs.is-main}}
id: mvn-release-snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SNAPSHOT: ${{ steps.metadata.outputs.snapshot }}
run: |
git config user.name ${{ env.GH_BOT_NAME }}
git config user.email ${{ env.GH_BOT_EMAIL }}
CB=commonhaus-bot-${SNAPSHOT}-runner
ls -al ./commonhaus-bot/target
gh release upload "${SNAPSHOT}" --clobber ./commonhaus-bot/target/${CB}.jar#${CB}.jar
gh release upload "${SNAPSHOT}" --clobber ./commonhaus-bot/target/${CB}#${CB}
CB=cf-admin-bot-${SNAPSHOT}-runner
ls -al ./cf-admin-bot/target
gh release upload "${SNAPSHOT}" --clobber ./cf-admin-bot/target/${CB}.jar#${CB}.jar
gh release upload "${SNAPSHOT}" --clobber ./cf-admin-bot/target/${CB}#${CB}
echo "Update tag for $SNAPSHOT"
git push origin :refs/tags/$SNAPSHOT
git tag -f $SNAPSHOT
git push --tags
echo "Update $SNAPSHOT release"
gh release edit "${SNAPSHOT}" -t "${SNAPSHOT}" --prerelease
- name: Log in to the Container registry
if: ${{needs.main-root.outputs.is-main}}
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish OCI (native)
if: ${{needs.main-root.outputs.is-main}}
id: publish-oci
env:
SNAPSHOT: ${{ steps.metadata.outputs.snapshot }}
run: |
image="commonhaus/commonhaus-bot:${SNAPSHOT}"
docker tag "${image}" "ghcr.io/${image}"
docker push "ghcr.io/${image}"
image="commonhaus/cf-admin-bot:${SNAPSHOT}"
docker tag "${image}" "ghcr.io/${image}"
docker push "ghcr.io/${image}"
- name: Mark snapshot release as non-draft
if: ${{needs.main-root.outputs.is-main}}
id: update-snapshot-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SNAPSHOT: ${{ steps.metadata.outputs.snapshot }}
run: |
gh release edit "${SNAPSHOT}" --draft=false
gh release view "${SNAPSHOT}"
- name: Delete snapshots artifacts from cache
run: find ~/.m2 -name \*-SNAPSHOT -type d -exec rm -rf {} +
deploy:
needs: [main-root, build]
if: ${{needs.main-root.outputs.is-main}}
runs-on: ubuntu-latest
permissions:
contents: read
concurrency:
group: "deploy"
steps:
- name: Set up SSH
run: |
mkdir -p ~/.ssh/
echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
sudo chmod 600 ~/.ssh/id_rsa
shell: bash
env:
SSH_PRIVATE_KEY: ${{secrets.SSH_PRIVATE_KEY}}
SSH_KNOWN_HOSTS: ${{secrets.SSH_KNOWN_HOSTS}}
- name: Update CF Bot
run: |
ssh $SSH_PORT $SSH_USER_HOST "$SSH_BOT_UPDATE"
shell: bash
env:
SSH_USER_HOST: ${{secrets.SSH_USER_HOST}}
SSH_PORT: ${{secrets.SSH_PORT}}
SSH_BOT_UPDATE: ${{secrets.SSH_BOT_UPDATE}}
- name: Cleanup
run: |
rm ~/.ssh/id_rsa
rm ~/.ssh/known_hosts
shell: bash