Skip to content

Commit 107edb6

Browse files
author
Cody Brookshear
authored
Merge pull request #55 from 6RiverSystems/feat/HH-263
HH-295 - roslibjs assumes window is defined when running under a "browser" context
2 parents a1efaee + 8fd2530 commit 107edb6

File tree

7 files changed

+13287
-185
lines changed

7 files changed

+13287
-185
lines changed

.circleci/config.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
version: 2
1+
version: 2.1
2+
orbs:
3+
sixrs-gke: sixriversystems/sixrs-gke@3
24
jobs:
35
build:
46
docker:
@@ -7,11 +9,7 @@ jobs:
79
- MOCHA_OPTS: --reporter mocha-junit-reporter --reporter-options mochaFile=./reports/junit/mocha/mocha.xml
810
steps:
911
- checkout
10-
- run:
11-
name: Setup CI Environment
12-
command: |
13-
git submodule update --init
14-
ci_scripts/ci_tool.sh --setup_npm
12+
- sixrs-gke/setup-private-npm
1513
- restore_cache:
1614
key: dependency-cache-{{ checksum "package-lock.json" }}
1715
- run:
@@ -29,12 +27,8 @@ jobs:
2927
prefix: reports/junit/
3028
- store_test_results:
3129
path: reports/junit/
32-
- run:
33-
name: Run release
34-
command: ci_scripts/ci_tool.sh --run_release
35-
- run:
36-
name: Npm Publish
37-
command: npm publish
30+
- sixrs-gke/run-release
31+
- sixrs-gke/npm-publish
3832

3933
workflows:
4034
version: 2

0 commit comments

Comments
 (0)