temporarily disable darwin on ci

This commit is contained in:
2026-02-07 11:15:06 -06:00
parent 78e35b734d
commit 8d9c670b6c

38
Jenkinsfile vendored
View File

@@ -36,25 +36,25 @@ pipeline {
}
}
}
stage('build ffmpeg on darwin') {
matrix {
axes {
axis {
name 'COMP_OPTS';
values 'OPT=0 LTO=OFF STATIC=OFF', 'OPT=2 LTO=OFF', 'PGO=ON'
}
}
stages {
stage('build on darwin ') {
agent { label "darwin" }
steps {
sh "${COMP_OPTS} ./scripts/build.sh"
archiveArtifacts allowEmptyArchive: true, artifacts: 'gitignore/package/*.tar.xz', defaultExcludes: false
}
}
}
}
}
// stage('build ffmpeg on darwin') {
// matrix {
// axes {
// axis {
// name 'COMP_OPTS';
// values 'OPT=0 LTO=OFF STATIC=OFF', 'OPT=2 LTO=OFF', 'PGO=ON'
// }
// }
// stages {
// stage('build on darwin ') {
// agent { label "darwin" }
// steps {
// sh "${COMP_OPTS} ./scripts/build.sh"
// archiveArtifacts allowEmptyArchive: true, artifacts: 'gitignore/package/*.tar.xz', defaultExcludes: false
// }
// }
// }
// }
// }
stage('build ffmpeg on linux') {
matrix {
axes {