fix Jenkins syntax error

This commit is contained in:
2025-12-20 23:11:26 -06:00
parent 69ada12884
commit 71c7266661

16
Jenkinsfile vendored
View File

@@ -39,10 +39,10 @@ pipeline {
stage('build ffmpeg on darwin') { stage('build ffmpeg on darwin') {
matrix { matrix {
axes { axes {
axis { name 'COMP_OPTS'; values axis {
'OPT=0 LTO=OFF STATIC=OFF', name 'COMP_OPTS';
'OPT=2 LTO=OFF STATIC=ON', values 'OPT=0 LTO=OFF STATIC=OFF', 'OPT=2 LTO=OFF STATIC=ON', 'OPT=3 LTO=ON STATIC=ON PGO=ON'
'OPT=3 LTO=ON STATIC=ON PGO=ON' } }
} }
stages { stages {
stage('build on darwin ') { stage('build on darwin ') {
@@ -60,10 +60,10 @@ pipeline {
axes { axes {
axis { name 'ARCH'; values 'armv8-a', 'x86-64-v3' } axis { name 'ARCH'; values 'armv8-a', 'x86-64-v3' }
axis { name 'DISTRO'; values 'ubuntu', 'fedora', 'debian', 'archlinux' } axis { name 'DISTRO'; values 'ubuntu', 'fedora', 'debian', 'archlinux' }
axis { name 'COMP_OPTS'; values axis {
'OPT=0 LTO=OFF STATIC=OFF', name 'COMP_OPTS';
'OPT=2 LTO=OFF STATIC=ON', values 'OPT=0 LTO=OFF STATIC=OFF', 'OPT=2 LTO=OFF STATIC=ON', 'OPT=3 LTO=ON STATIC=ON PGO=ON'
'OPT=3 LTO=ON STATIC=ON PGO=ON' } }
} }
stages { stages {
stage('build ffmpeg on linux using docker') { stage('build ffmpeg on linux using docker') {