-
-
Notifications
You must be signed in to change notification settings - Fork 15
102 lines (84 loc) · 2.54 KB
/
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: matthuisman/kodi-headless
run-name: ${{ github.ref_name }}
on:
workflow_dispatch:
jobs:
build_amd64:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: hub login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: build
uses: docker/build-push-action@v2
with:
context: .
pull: true
push: true
platforms: linux/amd64
tags: matthuisman/kodi-headless:${{ github.ref_name }}-amd64
build_arm64:
runs-on: buildjet-2vcpu-ubuntu-2204-arm
steps:
- name: Checkout
uses: actions/checkout@v3
- name: hub login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Setup buildx
uses: docker/setup-buildx-action@v2
- name: build
uses: docker/build-push-action@v2
with:
context: .
pull: true
push: true
platforms: linux/arm64/v8
tags: matthuisman/kodi-headless:${{ github.ref_name }}-arm64
build_arm:
runs-on: buildjet-2vcpu-ubuntu-2204-arm
steps:
- name: Checkout
uses: actions/checkout@v3
- name: hub login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Setup buildx
uses: docker/setup-buildx-action@v2
- name: build
uses: docker/build-push-action@v2
with:
file: ./Dockerfile.arm
context: .
pull: true
push: true
platforms: linux/arm/v7
tags: matthuisman/kodi-headless:${{ github.ref_name }}-arm
# build-args: |
# CMAKE_ARGS=-DWITH_CPU=arm|-DCMAKE_C_FLAGS="-march=armv7-a -mfpu=neon-vfpv4 -mfloat-abi=hard -mvectorize-with-neon-quad"|-DCMAKE_CXX_FLAGS="-march=armv7-a -mfpu=neon-vfpv4 -mfloat-abi=hard -mvectorize-with-neon-quad"
combine:
needs: [build_amd64, build_arm64, build_arm]
runs-on: ubuntu-latest
steps:
- name: hub login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Create and push manifest images
uses: int128/docker-manifest-create-action@v1
with:
builder: buildx
tags: matthuisman/kodi-headless:${{ github.ref_name }}
suffixes: |
-amd64
-arm64
-arm