Adding docker build and push to Jenkins

This commit is contained in:
retropikzel 2025-09-14 09:10:03 +03:00
parent 4e38511444
commit 88a2989b97
1 changed files with 2 additions and 0 deletions

2
Jenkinsfile vendored
View File

@ -16,6 +16,7 @@ pipeline {
stages { stages {
stage('Test R6RS implementations') { stage('Test R6RS implementations') {
agent { agent {
label 'docker-x86_64'
dockerfile { dockerfile {
filename 'Dockerfile.jenkins' filename 'Dockerfile.jenkins'
args '--user=root -v /var/run/docker.sock:/var/run/docker.sock' args '--user=root -v /var/run/docker.sock:/var/run/docker.sock'
@ -40,6 +41,7 @@ pipeline {
stage('Test R7RS implementations') { stage('Test R7RS implementations') {
agent { agent {
label 'docker-x86_64'
dockerfile { dockerfile {
filename 'Dockerfile.jenkins' filename 'Dockerfile.jenkins'
args '--user=root -v /var/run/docker.sock:/var/run/docker.sock' args '--user=root -v /var/run/docker.sock:/var/run/docker.sock'