-
Notifications
You must be signed in to change notification settings - Fork 14
108 lines (94 loc) · 3.25 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
name: Build Tomcat JSS
on: [push, pull_request]
env:
COPR_REPO: ${{ vars.COPR_REPO || '@pki/master' }}
jobs:
init:
name: Initialization
uses: ./.github/workflows/init.yml
secrets: inherit
build:
name: Building Tomcat JSS
needs: init
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Cache Docker layers
id: cache-buildx
uses: actions/cache@v3
with:
key: buildx-${{ hashFiles('tomcatjss.spec') }}
path: /tmp/.buildx-cache
- name: Build tomcatjss-deps image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: tomcatjss-deps
target: tomcatjss-deps
cache-to: type=local,dest=/tmp/.buildx-cache
if: steps.cache-buildx.outputs.cache-hit != 'true'
- name: Build tomcatjss-builder-deps image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: tomcatjss-builder-deps
target: tomcatjss-builder-deps
cache-to: type=local,dest=/tmp/.buildx-cache
if: steps.cache-buildx.outputs.cache-hit != 'true'
- name: Build tomcatjss-builder image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: tomcatjss-builder
target: tomcatjss-builder
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker,dest=tomcatjss-builder.tar
- name: Store tomcatjss-builder image
uses: actions/cache@v3
with:
key: tomcatjss-builder-${{ github.sha }}
path: tomcatjss-builder.tar
- name: Build tomcatjss-dist image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: tomcatjss-dist
target: tomcatjss-dist
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker,dest=tomcatjss-dist.tar
- name: Store tomcatjss-dist image
uses: actions/cache@v3
with:
key: tomcatjss-dist-${{ github.sha }}
path: tomcatjss-dist.tar
- name: Build tomcatjss-runner image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
BASE_IMAGE=${{ needs.init.outputs.base-image }}
COPR_REPO=${{ env.COPR_REPO }}
tags: tomcatjss-runner
target: tomcatjss-runner
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker,dest=tomcatjss-runner.tar
- name: Store tomcatjss-runner image
uses: actions/cache@v3
with:
key: tomcatjss-runner-${{ github.sha }}
path: tomcatjss-runner.tar