-
Notifications
You must be signed in to change notification settings - Fork 4
176 lines (164 loc) · 7.23 KB
/
deploy.yaml
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
---
name: Deploy
# yamllint disable-line rule:truthy
on:
release:
types:
- published
workflow_run:
workflows: ["CI"]
branches: [main]
types:
- completed
jobs:
information:
if: |
github.event_name == 'release'
|| (
github.event_name == 'workflow_run'
&& github.event.workflow_run.conclusion == 'success'
)
name: ℹ️ Gather add-on information
runs-on: ubuntu-latest
outputs:
containersha: ${{ steps.information.outputs.containersha }}
description: ${{ steps.information.outputs.description }}
environment: ${{ steps.information.outputs.environment }}
name: ${{ steps.information.outputs.name }}
version: ${{ steps.information.outputs.version }}
build_date: ${{ steps.information.outputs.build_date }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
- name: ℹ️ Gather version and environment
id: information
# yamllint disable rule:line-length
run: |
sha="${{ github.sha }}"
environment="edge"
version="${sha:0:7}"
echo "containersha=${version}" >> $GITHUB_OUTPUT
if [[ "${{ github.event_name }}" = "release" ]]; then
version="${{ github.event.release.tag_name }}"
version="${version,,}"
version="${version#v}"
environment="stable"
if [[ "${{ github.event.release.prerelease }}" = "true" ]]; then
environment="beta"
fi
fi
echo "environment=${environment}" >> $GITHUB_OUTPUT
echo "version=${version}" >> $GITHUB_OUTPUT
echo "name=NVIDIA® CUDA® Toolkit" >> $GITHUB_OUTPUT
echo "description=NVIDIA® CUDA® Toolkit" >> $GITHUB_OUTPUT
# yamllint enable rule:line-length
deploy:
strategy:
matrix:
version: [12.3.1, 12.2.2, 12.0.1, 12.0.0, 11.8.0]
ffmpeg: [5.1.4, "6.0.1", "6.1.1"]
os: [ubuntu22.04]
include:
- version: 12.2.2
nvcodec: 12.0.16.0
- version: 12.0.1
nvcodec: 12.0.16.0
- version: 12.0.0
nvcodec: 12.0.16.0
- version: 11.8.0
nvcodec: 12.0.16.0
# yamllint disable rule:line-length
name: 👷 Build & Deploy CUDA ${{ matrix.version }} on ${{ matrix.os }} with ffmpeg ${{ matrix.ffmpeg }}
needs:
- information
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
# - name: Install Latest Docker
# # yamllint disable rule:line-length
# run: |
# curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
# sudo apt-get update
# sudo apt-get install docker-ce
# # yamllint enable rule:line-length
- name: 📝 Docker meta
id: meta
uses: docker/metadata-action@v5
with:
flavor: |
latest=false
prefix=${{ matrix.version }}-${{ matrix.ffmpeg }}-${{ matrix.os }}-
suffix=
# list of Docker images to use as base name for tags
images: |
aperimau/nvidia-cuda-ffmpeg
ghcr.io/aperim/nvidia-cuda-ffmpeg
# generate Docker tags based on the following events/attributes
# yamllint disable rule:line-length
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=semver,pattern={{version}},enable=${{ startsWith(github.ref, 'refs/tags/v') && matrix.version == '12.3.1' && matrix.os == 'ubuntu22.04' && matrix.ffmpeg == '6.1.1' }},prefix=,suffix=
type=semver,pattern={{major}}.{{minor}},enable=${{ startsWith(github.ref, 'refs/tags/v') && matrix.version == '12.3.1' && matrix.os == 'ubuntu22.04' && matrix.ffmpeg == '6.1.1' }},prefix=,suffix=
type=semver,pattern={{major}},enable=${{ startsWith(github.ref, 'refs/tags/v') && matrix.version == '12.3.1' && matrix.os == 'ubuntu22.04' && matrix.ffmpeg == '6.1.1' }},prefix=,suffix=
type=sha
type=edge,enable=${{ matrix.version == '12.3.1' && matrix.os == 'ubuntu22.04' && matrix.ffmpeg == '6.1.1' }},priority=700,prefix=,suffix=,branch=$repo.default_branch
type=raw,prefix=,suffix=,value=${{ matrix.version }}-latest,enable=${{ startsWith(github.ref, 'refs/tags/v') && matrix.os == 'ubuntu22.04' && matrix.ffmpeg == '6.1.1' }}
type=raw,prefix=,suffix=,value=${{ matrix.version }}-${{ matrix.os }}-latest,enable=${{ startsWith(github.ref, 'refs/tags/v') && matrix.ffmpeg == '6.1.1' }}
type=raw,prefix=,suffix=,value=${{ matrix.version }}-${{ matrix.ffmpeg }}-${{ matrix.os }}-latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
type=raw,prefix=,suffix=,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') && matrix.version == '12.3.1' && matrix.os == 'ubuntu22.04' && matrix.ffmpeg == '6.1.1' }},prefix=,suffix=
# yamllint enable rule:line-length
- name: 🏗 Set up QEMU
uses: docker/setup-qemu-action@v3
- name: 🏗 Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
install: true
- name: 🏗 Login to Docker Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: 🏗 Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CI_PAT }}
- name: 🚀 Conditional Build Args
id: buildargs
run: |
args="BUILD_DATE=\"${{ steps.flags.outputs.date }}\" \
BUILD_DESCRIPTION=\"${{ needs.information.outputs.description }}\" \
BUILD_NAME=\"${{ needs.information.outputs.name }}\" \
BUILD_REF=\"${{ github.sha }}\" \
BUILD_REPOSITORY=\"${{ github.repository }}\" \
BUILD_VERSION=\"${{ needs.information.outputs.version }}\" \
CUDA=\"${{ matrix.version }}\" \
OS=\"${{ matrix.os }}\" \
FFMPEG_VERSION=\"${{ matrix.ffmpeg }}\""
if [[ -n "${{ matrix.nvcodec }}" ]]; then
args+=" NVCODEC_HEADERS_VERSION=\"${{ matrix.nvcodec }}\""
fi
echo "args=${args}" >> $GITHUB_OUTPUT
- name: 🚀 Build
uses: docker/build-push-action@v5
with:
push: true
builder: ${{ steps.buildx.outputs.name }}
context: ./
file: ./ffmpeg/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
# yamllint disable-line rule:line-length
# platforms: linux/amd64,linux/386,linux/arm/v6,linux/arm/v7,linux/arm64/v8
platforms: linux/amd64
build-args: ${{ steps.buildargs.outputs.args }}