This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
forked from synclounge/synclounge
-
Notifications
You must be signed in to change notification settings - Fork 0
115 lines (98 loc) · 3.74 KB
/
ci.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
name: ci
on:
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dockerfile:
- Dockerfile
- Dockerfile.web
include:
- dockerfile: Dockerfile
docker-image: localhost:5000/${{ github.event.repository.full_name }}
- dockerfile: Dockerfile.web
docker-image: localhost:5000/${{ github.event.repository.full_name }}web
services:
registry:
image: registry:latest
ports:
- 5000:5000
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Repo metadata
id: repo
uses: actions/github-script@v3.1.0
with:
script: |
const repo = await github.repos.get(context.repo)
return repo.data
- name: Prepare
id: prep
run: |
echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
- name: Set up QEMU
uses: docker/setup-qemu-action@v1.0.1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1.1.1
with:
version: latest
driver-opts: network=host
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Get platforms
uses: actions/github-script@v3.1.0
id: platforms
env:
DOCKER_CLI_EXPERIMENTAL: enabled
with:
result-encoding: string
script: |
const script = require(`${process.env.GITHUB_WORKSPACE}/.github/getDockerPlatforms.js`)
return script("${{ matrix.dockerfile }}", "${{ steps.buildx.outputs.platforms }}");
- name: Platforms
run: echo ${{ steps.platforms.outputs.result }}
- name: Cache Docker layers
uses: actions/cache@v2.1.3
id: cache
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-docker-${{ matrix.dockerfile }}-${{ hashFiles('**/package-lock.json') }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-docker-${{ matrix.dockerfile }}-${{ hashFiles('**/package-lock.json') }}
${{ runner.os }}-docker-${{ matrix.dockerfile }}-
${{ runner.os }}-docker-
- name: Cache hit
run: echo ${{ steps.cache.outputs.cache-hit }}
- name: Build and push
id: docker-build
uses: docker/build-push-action@v2.2.2
with:
push: true
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./${{ matrix.dockerfile}}
platforms: ${{ steps.platforms.outputs.result }}
tags: ${{ matrix.docker-image }}:${{ github.sha }}
labels: |
org.opencontainers.image.title=${{ fromJson(steps.repo.outputs.result).name }}
org.opencontainers.image.description=${{ fromJson(steps.repo.outputs.result).description }}
org.opencontainers.image.url=${{ fromJson(steps.repo.outputs.result).html_url }}
org.opencontainers.image.source=${{ fromJson(steps.repo.outputs.result).clone_url }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.licenses=${{ fromJson(steps.repo.outputs.result).license.spdx_id }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
- name: Inspect
run: |
docker buildx imagetools inspect ${{ matrix.docker-image }}:${{ github.sha }}
- name: Image digest
run: echo ${{ steps.docker-build.outputs.digest }}
- name: Dump context
if: always()
uses: crazy-max/ghaction-dump-context@v1.1.0