Skip to content

Commit 81886b9

Browse files
author
Markus Perl
committed
Github Workflow update
1 parent 3f61d36 commit 81886b9

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build-linux:
1212
name: build in native linux
13-
runs-on: ubuntu-22.10
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Checkout code
1616
uses: actions/checkout@v2
@@ -59,19 +59,19 @@ jobs:
5959
6060
build-docker:
6161
name: build in docker
62-
runs-on: ubuntu-22.10
62+
runs-on: ubuntu-22.04
6363
steps:
6464
- name: Checkout code
6565
uses: actions/checkout@v2
6666

6767
- name: pull base image
6868
id: ubuntu_pull
6969
run: |
70-
docker pull ubuntu:22.10
70+
docker pull ubuntu:22.04
7171
- name: run if ubuntu_pull failed
7272
if: failure() && steps.ubuntu_pull.outcome == 'failure'
7373
run: |
74-
docker pull ubuntu:22.10
74+
docker pull ubuntu:22.04
7575
- name: build ffmpeg
7676
run: |
7777
docker build -t ffmpeg:ubuntu -f Dockerfile .
@@ -81,21 +81,21 @@ jobs:
8181
8282
build-cuda-ubuntu-docker:
8383
name: build in ubuntu docker with cuda
84-
runs-on: ubuntu-22.10
84+
runs-on: ubuntu-22.04
8585
steps:
8686
- name: Checkout code
8787
uses: actions/checkout@v2
8888

8989
- name: pull base image
9090
id: cuda_ubuntu_pull
9191
run: |
92-
docker pull nvidia/cuda:11.4.2-devel-ubuntu22.10
93-
docker pull ubuntu:22.10
92+
docker pull nvidia/cuda:11.4.2-devel-ubuntu22.04
93+
docker pull ubuntu:22.04
9494
- name: run if cuda_ubuntu_pull failed
9595
if: failure() && steps.cuda_ubuntu_pull.outcome == 'failure'
9696
run: |
97-
docker pull nvidia/cuda:11.4.2-devel-ubuntu22.10
98-
docker pull ubuntu:22.10
97+
docker pull nvidia/cuda:11.4.2-devel-ubuntu22.04
98+
docker pull ubuntu:22.04
9999
- name: build ffmpeg
100100
run: |
101101
docker build -t ffmpeg:cuda-ubuntu -f cuda-ubuntu.dockerfile .
@@ -129,19 +129,19 @@ jobs:
129129
130130
build-full-static:
131131
name: full static build in docker
132-
runs-on: ubuntu-22.10
132+
runs-on: ubuntu-22.04
133133
steps:
134134
- name: Checkout code
135135
uses: actions/checkout@v2
136136

137137
- name: pull base image
138138
id: cuda_ubuntu_pull
139139
run: |
140-
docker pull nvidia/cuda:11.4.2-devel-ubuntu22.10
140+
docker pull nvidia/cuda:11.4.2-devel-ubuntu22.04
141141
- name: run if cuda_ubuntu_pull failed
142142
if: failure() && steps.cuda_ubuntu_pull.outcome == 'failure'
143143
run: |
144-
docker pull nvidia/cuda:11.4.2-devel-ubuntu22.10
144+
docker pull nvidia/cuda:11.4.2-devel-ubuntu22.04
145145
- name: build ffmpeg
146146
run: |
147147
docker build -t ffmpeg:cuda-static -f full-static.dockerfile .

0 commit comments

Comments
 (0)