-
Notifications
You must be signed in to change notification settings - Fork 1
161 lines (135 loc) · 4.21 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
name: err0agent build pipeline
on:
push:
branches: [ "develop", "master" ]
tags: '*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
err0-secret:
if: startsWith(github.ref, 'refs/heads/')
runs-on: ubuntu-latest
steps:
- name: create token from secret
run: |
mkdir -p tokens
echo "$SECRET" >> tokens/err0agent.json
cat tokens/err0agent.json
shell: bash
env:
SECRET: ${{secrets.ERR0_TOKEN}}
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: err0agent-token
path: |
tokens/err0agent.json
err0:
if: startsWith(github.ref, 'refs/heads/')
runs-on: ubuntu-latest
container: err0io/agent:latest
needs: err0-secret
steps:
- uses: actions/checkout@v3
- name: git fetch tags
run: |
git fetch --all --tags --force
- uses: actions/download-artifact@v3
with:
name: err0agent-token
path: tokens
- run: err0.sh --token tokens/err0agent.json --analyse --check .
build-branches:
if: startsWith(github.ref, 'refs/heads/')
runs-on: ubuntu-latest
needs: err0
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build
- name: Create checksums
run: |
sha256sum build/libs/err0agent-java_1_8-fat.jar > build/libs/err0agent-java_1_8-fat.jar.sha256
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: err0agent-fat-jar
path: |
build/libs/err0agent-java_1_8-fat.jar
build/libs/err0agent-java_1_8-fat.jar.sha256
build-tags:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: build
- name: Create checksums
run: |
sha256sum build/libs/err0agent-java_1_8-fat.jar > build/libs/err0agent-java_1_8-fat.jar.sha256
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: err0agent-fat-jar
path: |
build/libs/err0agent-java_1_8-fat.jar
build/libs/err0agent-java_1_8-fat.jar.sha256
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
build/libs/err0agent-java_1_8-fat.jar
build/libs/err0agent-java_1_8-fat.jar.sha256
package-develop:
if: github.ref == 'refs/heads/develop'
runs-on: ubuntu-latest
needs: build-branches
container: docker:latest
services:
dind:
image: docker:dind
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: err0agent-fat-jar
path: docker/agent
- run: docker info
- run: echo -n ${{ secrets.DOCKER_HUB_ERR0IO_PASSWORD }} | docker login -u err0io --password-stdin
- run: docker buildx create --driver docker-container --use
- run: docker buildx build --platform linux/amd64,linux/arm64 --no-cache docker/agent --tag err0io/agent:develop --push
package-master:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
needs: build-branches
container: docker:latest
services:
dind:
image: docker:dind
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: err0agent-fat-jar
path: docker/agent
- run: docker info
- run: echo -n ${{ secrets.DOCKER_HUB_ERR0IO_PASSWORD }} | docker login -u err0io --password-stdin
- run: docker buildx create --driver docker-container --use
- run: docker buildx build --platform linux/amd64,linux/arm64 --no-cache docker/agent --tag err0io/agent:latest --push