pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
sh 'docker build --tag base ./ -f Dockerfile.base'
sh 'docker build --tag linting-agent ./ -f Dockerfile.lint'
sh 'docker build --tag build-linux-agent ./ -f Dockerfile.build.linux'
sh 'docker build --tag build-windows-agent ./ -f Dockerfile.build.windows'
sh 'docker build --tag build-macosx-agent ./ -f Dockerfile.build.macosx'
}
}
}
}