Skip to content

Commit a0fb6ab

Browse files
author
Filip Mertens
committed
params test
1 parent 7f33215 commit a0fb6ab

File tree

1 file changed

+25
-16
lines changed

1 file changed

+25
-16
lines changed

.circleci/config.yml

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
key: v1-deps-{{ checksum "yarn.lock" }}
2525
paths:
2626
- node_modules
27-
- run: NX_BIN_URL=http://127.0.0.1:8080/assets/js NX_WASM_URL=http://127.0.0.1:8080/assets/js yarn build:production
27+
- run: NX_BIN_URL=http://127.0.0.1:8080/assets/js NX_WASM_URL=http://127.0.0.1:8080/assets/js yarn build
2828
- run: yarn nx build remix-ide-e2e-src-local-plugin & yarn run build:libs
2929
- run: yarn nx run debugger:build:production
3030
- run: yarn nx run solidity-compiler:build:production
@@ -93,13 +93,23 @@ jobs:
9393
type: string
9494
parallelism: 10
9595
steps:
96-
- browser-tools/install-browser-tools
97-
- run:
98-
command: |
99-
google-chrome --version
100-
firefox --version
101-
geckodriver --version
102-
chromedriver --version
96+
when:
97+
condition:
98+
equal: [ "chrome", << parameters.browser >> ]
99+
steps:
100+
- browser-tools/install-chrome
101+
- browser-tools/install-chromedriver
102+
when:
103+
condition:
104+
equal: [ "firefox", << parameters.browser >> ]
105+
steps:
106+
- browser-tools/install-firefox
107+
- browser-tools/install-geckodriver
108+
- run: google-chrome --version
109+
- run: firefox --version
110+
- run: geckodriver --version
111+
- run: chromedriver --version
112+
- run: rm LICENSE.chromedriver 2> /dev/null
103113
- checkout
104114
- attach_workspace:
105115
at: .
@@ -139,14 +149,13 @@ jobs:
139149
type: string
140150
parallelism: 4
141151
steps:
142-
- browser-tools/install-browser-tools
143-
- run:
144-
command: |
145-
google-chrome --version
146-
firefox --version
147-
geckodriver --version
148-
chromedriver --version
149-
name: Check install
152+
- browser-tools/install-chrome
153+
- browser-tools/install-chromedriver
154+
- run: google-chrome --version
155+
- run: firefox --version
156+
- run: geckodriver --version
157+
- run: chromedriver --version
158+
- run: rm LICENSE.chromedriver 2> /dev/null
150159
- checkout
151160
- attach_workspace:
152161
at: .

0 commit comments

Comments
 (0)