-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
50 lines (49 loc) · 1.58 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
pipeline {
agent none
stages {
// We can't actually build, because CentOS lacks SDL2..
/*
stage('Build') {
agent any
environment {
GOPATH = "$WORKSPACE"
}
steps {
// Get this in the right place.
dir('src/github.com/CrimsonAS/goggle') {
checkout scm
dir('examples/trippy') {
sh 'go get' // ### we should vendor, probably
sh 'go build'
archiveArtifacts artifacts: 'trippy'
}
dir('examples/draggablerect') {
sh 'go get' // ### we should vendor, probably
sh 'go build'
archiveArtifacts artifacts: 'draggablerect'
}
dir('examples/manyrects') {
sh 'go get' // ### we should vendor, probably
sh 'go build'
archiveArtifacts artifacts: 'manyrects'
}
}
}
}
*/
stage('Test') {
agent any
environment {
GOPATH = "$WORKSPACE"
}
steps {
// Get this in the right place.
dir('src/github.com/CrimsonAS/goggle') {
sh "go test -v ./animation"
sh "go test -v ./renderer/private"
sh "go test -v ./sg"
}
}
}
}
}