custom script

pull/4010/head^2
bunsenstraat 1 year ago committed by Aniket
parent 7129dfb80a
commit c27442bc13
  1. 10
      .circleci/config.yml

@ -15,6 +15,7 @@ jobs:
xlarge
working_directory: ~/remix-project
steps:
- install-chromedriver-custom-linux
- checkout
- restore_cache:
keys:
@ -367,3 +368,12 @@ workflows:
only: remix_beta
# VS Code Extension Version: 1.5.1
commands:
install-chromedriver-custom-linux:
description: Custom script to install chromedriver with better version support for linux
steps:
- run:
command: >
#!/bin/bash
curl -s 'https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions.json' | python3 -c "import sys, json; print(json.load(sys.stdin)['channels']['Stable']['version'])"

Loading…
Cancel
Save