Fixing testing

This commit is contained in:
retropikzel 2026-01-26 17:51:15 +02:00
parent e41252fa1b
commit 66302b5a90
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -1,7 +1,7 @@
pipeline {
agent {
docker {
image 'debian'
image 'alpine'
label 'docker-x86_64'
args '--user=root --privileged -v /var/run/docker.sock:/var/run/docker.sock'
}
@ -20,7 +20,7 @@ pipeline {
stages {
stage('Init') {
steps {
sh "apt-get update && apt-get install -y make docker.io"
sh "apk add make docker"
}
}
stage('R6RS') {