15 lines
435 B
Groovy
15 lines
435 B
Groovy
@Library('dotnet-ci') _
|
|
|
|
// 'node' indicates to Jenkins that the enclosed block runs on a node that matches
|
|
// the label 'windows-with-vs'
|
|
simpleNode('OSX.1012.Amd64.Open') {
|
|
stage ('Checking out source') {
|
|
checkout scm
|
|
}
|
|
stage ('Build') {
|
|
def logFolder = getLogFolder()
|
|
def environment = "export ASPNETCORE_TEST_LOG_DIR=${WORKSPACE}/${logFolder}"
|
|
sh "${environment}&./build.sh -ci"
|
|
}
|
|
}
|