Skip to content

Commit 0f79ec7

Browse files
committed
ci: enable all linux targets, add explicit name, add trigger on all pushes
1 parent 4873090 commit 0f79ec7

File tree

1 file changed

+39
-32
lines changed

1 file changed

+39
-32
lines changed

.github/workflows/ffmpeg.yml

Lines changed: 39 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: ffmpeg
22
on:
33
push:
4+
branches:
5+
- '*'
46
tags-ignore:
57
- '*'
68
pull_request:
@@ -54,43 +56,48 @@ jobs:
5456
# steps:
5557
# - uses: actions/checkout@v4
5658
# - uses: ./.github/actions/deploy-ubuntu
57-
# linux-armhf:
58-
# runs-on: ubuntu-22.04
59-
# strategy:
60-
# matrix:
61-
# gpl: ["false", "true"]
62-
# steps:
63-
# - uses: actions/checkout@v4
64-
# - uses: ./.github/actions/deploy-ubuntu
65-
# linux-arm64:
66-
# runs-on: ubuntu-22.04
67-
# strategy:
68-
# matrix:
69-
# gpl: ["false", "true"]
70-
# steps:
71-
# - uses: actions/checkout@v4
72-
# - uses: ./.github/actions/deploy-ubuntu
73-
# linux-ppc64le:
74-
# runs-on: ubuntu-22.04
75-
# strategy:
76-
# matrix:
77-
# gpl: ["false", "true"]
78-
# steps:
79-
# - uses: actions/checkout@v4
80-
# - uses: ./.github/actions/deploy-ubuntu
81-
# linux-x86:
82-
# runs-on: ubuntu-22.04
83-
# strategy:
84-
# matrix:
85-
# gpl: ["false", "true"]
86-
# steps:
87-
# - uses: actions/checkout@v4
88-
# - uses: ./.github/actions/deploy-ubuntu
59+
linux-armhf:
60+
runs-on: ubuntu-22.04
61+
strategy:
62+
matrix:
63+
gpl: ["false", "true"]
64+
name: linux-armhf (${{ matrix.gpl == 'true' && 'GPL' || 'LGPL' }})
65+
steps:
66+
- uses: actions/checkout@v4
67+
- uses: ./.github/actions/deploy-ubuntu
68+
linux-arm64:
69+
runs-on: ubuntu-22.04
70+
strategy:
71+
matrix:
72+
gpl: ["false", "true"]
73+
name: linux-arm64 (${{ matrix.gpl == 'true' && 'GPL' || 'LGPL' }})
74+
steps:
75+
- uses: actions/checkout@v4
76+
- uses: ./.github/actions/deploy-ubuntu
77+
linux-ppc64le:
78+
runs-on: ubuntu-22.04
79+
strategy:
80+
matrix:
81+
gpl: ["false", "true"]
82+
name: linux-ppc64le (${{ matrix.gpl == 'true' && 'GPL' || 'LGPL' }})
83+
steps:
84+
- uses: actions/checkout@v4
85+
- uses: ./.github/actions/deploy-ubuntu
86+
linux-x86:
87+
runs-on: ubuntu-22.04
88+
strategy:
89+
matrix:
90+
gpl: ["false", "true"]
91+
name: linux-x86 (${{ matrix.gpl == 'true' && 'GPL' || 'LGPL' }})
92+
steps:
93+
- uses: actions/checkout@v4
94+
- uses: ./.github/actions/deploy-ubuntu
8995
linux-x86_64:
9096
runs-on: ubuntu-22.04
9197
strategy:
9298
matrix:
9399
gpl: ["false", "true"]
100+
name: linux-x86_64 (${{ matrix.gpl == 'true' && 'GPL' || 'LGPL' }})
94101
steps:
95102
- uses: actions/checkout@v4
96103
- uses: ./.github/actions/deploy-ubuntu

0 commit comments

Comments
 (0)