-
Notifications
You must be signed in to change notification settings - Fork 2
82 lines (81 loc) · 2.72 KB
/
ci-docker-image.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
name: Docker Image CI
on: push
env:
DOCKERHUB_USER: akospasztor
DOCKER_IMAGE_NAME: akospasztor/docker-gcc-arm
jobs:
build:
strategy:
matrix:
version: [8-2019-q3, 9-2019-q4, 9-2020-q2, 10-2020-q4]
os: [linux]
include:
- os: linux
runner: ubuntu-latest
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup docker buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Cache docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ matrix.version }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-${{ matrix.version }}-
${{ runner.os }}-buildx-
- name: Docker metadata
id: docker_meta
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKER_IMAGE_NAME }}
flavor: |
prefix=${{ matrix.version }}-${{ matrix.os }}-
latest=false
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
- name: Login to dockerhub
uses: docker/login-action@v3
with:
username: ${{ env.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PAT }}
- name: Build docker image
id: docker_build
uses: docker/build-push-action@v5
with:
context: ./${{ matrix.version }}/${{ matrix.os }}
load: true
push: false
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
builder: ${{ steps.buildx.outputs.name }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Test docker image
run: >
docker run --rm -i --env GCC_VERSION=${{ matrix.version }}
${{ env.DOCKER_IMAGE_NAME }}:${{ steps.docker_meta.outputs.version }}
< script/test-gcc-version.sh
- name: Search for vulnerabilities with docker scout
uses: docker/scout-action@v1
with:
command: cves
image: ${{ env.DOCKER_IMAGE_NAME }}:${{ steps.docker_meta.outputs.version }}
only-severities: critical, high
only-fixed: true
summary: true
- name: Push docker image
if: ${{ contains(github.ref, 'refs/tags/') }}
uses: docker/build-push-action@v5
with:
context: ./${{ matrix.version }}/${{ matrix.os }}
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
builder: ${{ steps.buildx.outputs.name }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache