This website works better with JavaScript
Home
Explore
Help
Sign In
quintor
/
pinguin-server
Watch
2
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
Add Jenkinsfile.
Harry de Boer
9 years ago
parent
bebaed0ef9
commit
93629d2934
1 changed files
with
8 additions
and
0 deletions
Split View
Show Diff Stats
8
0
Jenkinsfile
+ 8
- 0
Jenkinsfile
View File
@@ -0,0 +1,8 @@
+node {
+ stage('Build') {
+ sh 'go build'
+ }
+ stage('Test') {
+ sh 'go test'
+ }
+}