[CI] Add Windows GPU to Jenkins CI pipeline (#4463)

* Fix #4462: Use /MT flag consistently for MSVC target

* First attempt at Windows CI

* Distinguish stages in Linux and Windows pipelines

* Try running CMake in Windows pipeline

* Add build step
This commit is contained in:
Philip Hyunsu Cho
2019-05-14 04:45:06 +00:00
committed by GitHub
parent e7d17ec4f4
commit c6f2a7e186
5 changed files with 98 additions and 6 deletions

8
Jenkinsfile vendored
View File

@@ -25,7 +25,7 @@ pipeline {
// Build stages
stages {
stage('Get sources') {
stage('Jenkins Linux: Get sources') {
agent { label 'linux && cpu' }
steps {
script {
@@ -35,7 +35,7 @@ pipeline {
milestone ordinal: 1
}
}
stage('Formatting Check') {
stage('Jenkins Linux: Formatting Check') {
agent none
steps {
script {
@@ -49,7 +49,7 @@ pipeline {
milestone ordinal: 2
}
}
stage('Build') {
stage('Jenkins Linux: Build') {
agent none
steps {
script {
@@ -65,7 +65,7 @@ pipeline {
milestone ordinal: 3
}
}
stage('Test') {
stage('Jenkins Linux: Test') {
agent none
steps {
script {