Skip to content

Commit 5b5ab48

Browse files
committed
Migrate to Circle v2
1 parent 268b9ce commit 5b5ab48

File tree

3 files changed

+22
-23
lines changed

3 files changed

+22
-23
lines changed

.circleci/config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2.0
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: circleci/node:6-browsers
7+
steps:
8+
- checkout
9+
- run: "curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin"
10+
- run: "testspace config url samples.testspace.com"
11+
- run: sudo npm install -g gulp
12+
- run: npm install
13+
- run: gulp build
14+
- run:
15+
name: Send reports to testspace
16+
command: "testspace @.testspace.txt"
17+
when: always

.testspace.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Test Content files to publish
22

33
# "Static Analyis"
4-
$PWD/test/reports/jscs.xml
5-
$PWD/test/reports/jshint.xml
4+
$HOME/project/test/reports/jscs.xml
5+
$HOME/project/test/reports/jshint.xml
66

77
# "Tests"
8-
[Tests]$PWD/test/reports/junitresults.xml{test}
8+
[Tests]$HOME/project/test/reports/junitresults.xml{test}
99

1010
# "Code Coverage"
11-
$PWD/test/reports/coverage/clover.xml
12-
[Code Coverage]+$PWD/test/reports/coverage/clover.xml{attaching actual content for example only}
11+
$HOME/project/test/reports/coverage/clover.xml
12+
[Code Coverage]+$HOME/project/test/reports/coverage/clover.xml{attaching actual content for example only}

circle.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)