From 71c726666112e6774dcfe806b33a55e4184c246f Mon Sep 17 00:00:00 2001 From: Levon Gevorgyan Date: Sat, 20 Dec 2025 23:11:26 -0600 Subject: [PATCH] fix Jenkins syntax error --- Jenkinsfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aedcf57..fbfa417 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,10 +39,10 @@ pipeline { stage('build ffmpeg on darwin') { matrix { axes { - axis { name 'COMP_OPTS'; values - 'OPT=0 LTO=OFF STATIC=OFF', - 'OPT=2 LTO=OFF STATIC=ON', - 'OPT=3 LTO=ON STATIC=ON PGO=ON' } + axis { + name 'COMP_OPTS'; + values 'OPT=0 LTO=OFF STATIC=OFF', 'OPT=2 LTO=OFF STATIC=ON', 'OPT=3 LTO=ON STATIC=ON PGO=ON' + } } stages { stage('build on darwin ') { @@ -60,10 +60,10 @@ pipeline { axes { axis { name 'ARCH'; values 'armv8-a', 'x86-64-v3' } axis { name 'DISTRO'; values 'ubuntu', 'fedora', 'debian', 'archlinux' } - axis { name 'COMP_OPTS'; values - 'OPT=0 LTO=OFF STATIC=OFF', - 'OPT=2 LTO=OFF STATIC=ON', - 'OPT=3 LTO=ON STATIC=ON PGO=ON' } + axis { + name 'COMP_OPTS'; + values 'OPT=0 LTO=OFF STATIC=OFF', 'OPT=2 LTO=OFF STATIC=ON', 'OPT=3 LTO=ON STATIC=ON PGO=ON' + } } stages { stage('build ffmpeg on linux using docker') {