params test

pull/3347/head
Filip Mertens 2 years ago
parent 7f332156a8
commit a0fb6ab857
  1. 41
      .circleci/config.yml

@ -24,7 +24,7 @@ jobs:
key: v1-deps-{{ checksum "yarn.lock" }} key: v1-deps-{{ checksum "yarn.lock" }}
paths: paths:
- node_modules - node_modules
- 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 - 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
- run: yarn nx build remix-ide-e2e-src-local-plugin & yarn run build:libs - run: yarn nx build remix-ide-e2e-src-local-plugin & yarn run build:libs
- run: yarn nx run debugger:build:production - run: yarn nx run debugger:build:production
- run: yarn nx run solidity-compiler:build:production - run: yarn nx run solidity-compiler:build:production
@ -93,13 +93,23 @@ jobs:
type: string type: string
parallelism: 10 parallelism: 10
steps: steps:
- browser-tools/install-browser-tools when:
- run: condition:
command: | equal: [ "chrome", << parameters.browser >> ]
google-chrome --version steps:
firefox --version - browser-tools/install-chrome
geckodriver --version - browser-tools/install-chromedriver
chromedriver --version when:
condition:
equal: [ "firefox", << parameters.browser >> ]
steps:
- browser-tools/install-firefox
- browser-tools/install-geckodriver
- run: google-chrome --version
- run: firefox --version
- run: geckodriver --version
- run: chromedriver --version
- run: rm LICENSE.chromedriver 2> /dev/null
- checkout - checkout
- attach_workspace: - attach_workspace:
at: . at: .
@ -139,14 +149,13 @@ jobs:
type: string type: string
parallelism: 4 parallelism: 4
steps: steps:
- browser-tools/install-browser-tools - browser-tools/install-chrome
- run: - browser-tools/install-chromedriver
command: | - run: google-chrome --version
google-chrome --version - run: firefox --version
firefox --version - run: geckodriver --version
geckodriver --version - run: chromedriver --version
chromedriver --version - run: rm LICENSE.chromedriver 2> /dev/null
name: Check install
- checkout - checkout
- attach_workspace: - attach_workspace:
at: . at: .

Loading…
Cancel
Save