add libwebp libmp3lame

This commit is contained in:
2025-09-13 13:42:30 -05:00
parent 82ff7d4f43
commit 748ccd4e3c
6 changed files with 178 additions and 57 deletions

3
Jenkinsfile vendored
View File

@@ -14,6 +14,7 @@ def withDockerCreds(body) {
pipeline {
agent none
environment { DEBUG = "1" }
options { buildDiscarder logRotator(numToKeepStr: '3') }
stages {
stage('build docker image') {
matrix {
@@ -43,6 +44,7 @@ pipeline {
agent { label "darwin" }
steps {
sh "${OPT_LTO} ./scripts/build.sh"
archiveArtifacts allowEmptyArchive: true, artifacts: 'gitignore/package/*.tar.xz', defaultExcludes: false
}
}
}
@@ -62,6 +64,7 @@ pipeline {
steps {
withDockerCreds {
sh "${OPT_LTO} ./scripts/build_with_docker.sh ${DISTRO}"
archiveArtifacts allowEmptyArchive: true, artifacts: 'gitignore/package/*.tar.xz', defaultExcludes: false
}
}
}