Skip to content

Commit

Permalink
fix: circle ci instead of jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
BelfordZ committed May 6, 2019
1 parent 3071c00 commit 5d84609
Showing 1 changed file with 1 addition and 42 deletions.
43 changes: 1 addition & 42 deletions TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,4 @@

Testing is a project specific concern. That being said, each project may use a jenkins pipeline to setup CI and CD for the project.

We use [jenkins-vagrant](https://github.com/etclabscore/jenkins-vagrant)

Here is an example [jenkinsfile](https://jenkins.io/doc/book/pipeline/jenkinsfile/) that runs node project tests in each of osx, linux and windows:

```
pipeline {
agent none
stages {
stage('Run Tests') {
parallel {
stage('test') {
agent {
label 'macos'
}
steps {
sh 'npm install'
sh 'npm test'
}
}
stage('linux') {
agent {
label 'linux'
}
steps {
sh 'npm install'
sh 'npm test'
}
}
stage('windows') {
agent {
label 'windows'
}
steps {
bat 'npm install'
bat 'npm test'
}
}
}
}
}
}
```
We use circleci for this project.

0 comments on commit 5d84609

Please sign in to comment.