pipeline { agent { docker { image 'archlinux:base-devel' } } stages { stage('Package') { steps { sh 'makepkg -c' archiveArtifacts artifacts: 'cgit-pygments-wrapper-*-.pkg.tar.*' } } } }