|
1 | 1 | name: ffmpeg
|
2 | 2 | on:
|
3 | 3 | push:
|
| 4 | + branches: |
| 5 | + - '*' |
4 | 6 | tags-ignore:
|
5 | 7 | - '*'
|
6 | 8 | pull_request:
|
@@ -54,43 +56,48 @@ jobs:
|
54 | 56 | # steps:
|
55 | 57 | # - uses: actions/checkout@v4
|
56 | 58 | # - 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 |
89 | 95 | linux-x86_64:
|
90 | 96 | runs-on: ubuntu-22.04
|
91 | 97 | strategy:
|
92 | 98 | matrix:
|
93 | 99 | gpl: ["false", "true"]
|
| 100 | + name: linux-x86_64 (${{ matrix.gpl == 'true' && 'GPL' || 'LGPL' }}) |
94 | 101 | steps:
|
95 | 102 | - uses: actions/checkout@v4
|
96 | 103 | - uses: ./.github/actions/deploy-ubuntu
|
|
0 commit comments