Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2009f09 commit dfcb720Copy full SHA for dfcb720
.circleci/config.yml
@@ -110,6 +110,21 @@ jobs:
110
path: build
111
destination: /
112
113
+ test-image-orca:
114
+ docker:
115
+ - image: antoinerg/orca-reproducible:latest
116
+ working_directory: ~/plotly.js
117
+ steps:
118
+ - checkout
119
+ - attach_workspace:
120
+ at: ~/plotly.js
121
+ - run:
122
+ name: Run image tests
123
+ command: ./.circleci/orca_generate.sh
124
+ - store_artifacts:
125
+ path: build
126
+ destination: /
127
+
128
test-syntax:
129
docker:
130
- image: circleci/node:10.9.0
.circleci/orca_generate.sh
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env bash
2
3
+cd build/test_images
4
+ls ../../test/image/mocks/*.json | awk '!/mapbox/' | shuf | xargs -P1 -n20 xvfb-run -a orca graph --verbose
0 commit comments