Skip to content

Commit 5d6973b

Browse files
committed
fix: trying again
1 parent 1112fd8 commit 5d6973b

2 files changed

Lines changed: 1149 additions & 63 deletions

File tree

.circleci/config.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ jobs:
144144
parallelism: 4 # Run tests across 4 containers
145145
steps:
146146
- checkout
147-
- setup_remote_docker
147+
- setup_remote_docker:
148+
docker_layer_caching: true
148149
- attach_workspace:
149150
at: ~/snyk-docker-plugin
150151
- run:
@@ -168,7 +169,7 @@ jobs:
168169
- run:
169170
name: Run Windows tests in parallel
170171
command: |
171-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's|test\\windows\\||g' | sed 's|\\|/|g')
172+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | tr '\\' '/' | sed 's|test/windows/||g')
172173
npm run test-jest-windows -- $TEST
173174
no_output_timeout: 20m
174175
test_jest_windows_no_docker:
@@ -185,7 +186,7 @@ jobs:
185186
- run:
186187
name: Run Windows tests in parallel
187188
command: |
188-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's|test\\windows\\||g' | sed 's|\\|/|g')
189+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | tr '\\' '/' | sed 's|test/windows/||g')
189190
npm run test-jest-windows -- $TEST
190191
build:
191192
<<: *defaults
@@ -225,7 +226,8 @@ jobs:
225226
<<: *defaults
226227
resource_class: medium
227228
steps:
228-
- setup_remote_docker
229+
- setup_remote_docker:
230+
docker_layer_caching: true
229231
- checkout_and_merge
230232
- run:
231233
name: Build a Go binary with latest Go version

0 commit comments

Comments
 (0)