-
Notifications
You must be signed in to change notification settings - Fork 56
113 lines (97 loc) · 2.66 KB
/
ci-client.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
name: ci-client
on:
push:
paths:
- 'client*/**'
- '.github/workflows/ci-client.yml'
- '.github/actions/prepare-bareos-app/*'
- '.github/actions/build-bareos-app/*'
- '.github/actions/push-bareos-app/*'
- '.github/actions/test-bareos-app/*'
pull_request:
paths:
- 'client*/**'
- '.github/workflows/ci-client.yml'
- '.github/actions/prepare-bareos-app/*'
- '.github/actions/build-bareos-app/*'
- '.github/actions/push-bareos-app/*'
- '.github/actions/test-bareos-app/*'
workflow_dispatch:
schedule:
- cron: '35 5 * * *'
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Prepare build file
uses: ./.github/actions/prepare-bareos-app
with:
bareos_app: client
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: build-artifact-client
path: build
build:
needs: prepare
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: build-artifact-client
path: build
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v2
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: Build images
uses: ./.github/actions/build-bareos-app
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: build-artifact-client
path: build
test:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: build-artifact-client
path: build
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v2
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: Load and test images
uses: ./.github/actions/test-bareos-app
deploy:
needs: test
if: |
(github.event_name == 'push' || github.event_name == 'schedule') &&
github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: build-artifact-client
path: build
- name: Load and push images
uses: ./.github/actions/push-bareos-app
with:
docker_pass: ${{ secrets.DOCKER_PASS }}