mirror of
https://github.com/levogevo/ffmpeg-builder.git
synced 2026-01-15 19:06:17 +00:00
more fixes
This commit is contained in:
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
@@ -3,37 +3,25 @@ pipeline {
|
||||
stages {
|
||||
stage('Build Docker Image Matrix') {
|
||||
matrix {
|
||||
agent { label "linux && amd64" }
|
||||
axes {
|
||||
axis {
|
||||
name 'DISTRO'
|
||||
values 'debian:bookworm', 'ubuntu:24.04', 'ubuntu:22.04',
|
||||
'archlinux:latest', 'fedora:42'
|
||||
values 'debian-bookworm', 'ubuntu-24.04', 'ubuntu-22.04',
|
||||
'archlinux-latest', 'fedora-42'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Build Docker Image') {
|
||||
agent { label "linux && amd64" }
|
||||
steps {
|
||||
sh "./scripts/docker_build_image.sh ${DISTRO}"
|
||||
sh "./scripts/docker_save_image.sh ${DISTRO}"
|
||||
stash includes: "gitignore/docker/*${DISTRO}.tar.zst", name: "${DISTRO}-stash"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Run Docker Image Matrix') {
|
||||
matrix {
|
||||
agent { label "linux && arm64" }
|
||||
axes {
|
||||
axis {
|
||||
name 'DISTRO'
|
||||
values 'debian:bookworm', 'ubuntu:24.04', 'ubuntu:22.04',
|
||||
'archlinux:latest', 'fedora:42'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
|
||||
stage('Run Docker Image') {
|
||||
agent { label "linux && arm64" }
|
||||
steps {
|
||||
unstash "${DISTRO}-stash"
|
||||
sh "./scripts/docker_load_image.sh ${DISTRO}"
|
||||
|
||||
Reference in New Issue
Block a user