forked from docToolchain/docker-image
-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (103 loc) · 2.85 KB
/
standard-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
name: Build and push 'standard image' to Docker
on:
push:
branches:
- 'master'
- 'main'
- 'develop'
- 'feature/**'
- 'bugfix/**'
workflow_dispatch: {}
env:
DTC_VERSION: v3.1.2
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Build Image
uses: docker/build-push-action@v3
with:
context: alpine
build-args: DTC_VERSION=${{ env.DTC_VERSION }}
load: true
# TODO Make tag/version dependent on branch (push normal version only when on main branch, otherwise derive temporary version from branch name/datetime/commit-id/...)
tags: doctoolchain/doctoolchain:${{ env.DTC_VERSION }}
-
name: Create upload folder
run: mkdir /tmp/upload
-
name: Build and export
uses: docker/build-push-action@v5
with:
context: alpine
build-args: DTC_VERSION=${{ env.DTC_VERSION }}
tags: doctoolchain/doctoolchain:${{ env.DTC_VERSION }}
outputs: type=docker,dest=/tmp/upload/build.tar
-
name: ls tar
run: ls -a /tmp/upload/build.tar
-
name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: image
path: /tmp/upload
test:
runs-on: ubuntu-latest
needs: [build]
steps:
-
name: Download artifact
uses: actions/download-artifact@v3
with:
name: image
path: /tmp/upload/build.tar
-
name: ls tar
run: ls -a /tmp/upload/build.tar
-
name: Load image
run: docker load --input /tmp/upload/build.tar
-
name: Test Image
run: |
docker run \
--rm \
-v ${PWD}/test:/workspace \
-w /workspace \
doctoolchain/doctoolchain:${{ env.DTC_VERSION }} \
bash -c "set -eu; test -w /etc/environment && ls -l /etc/environment; doctoolchain . tasks"
deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
needs: [build, test]
steps:
-
name: Download artifact
uses: actions/download-artifact@v3
with:
name: image
path: /tmp/upload/build.tar
-
name: Load image
run: docker load --input /tmp/upload/build.tar
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Push Image
uses: docker/build-push-action@v3
with:
context: alpine
push: true
tags: doctoolchain/doctoolchain:${{ env.DTC_VERSION }}