back to bash

pull/3285/head
filip mertens 2 years ago
parent 6a1342d0d5
commit bac3877716
  1. 3
      .circleci/config.yml
  2. 8
      apps/remix-ide/ci/remixd_test.zsh

@ -103,12 +103,11 @@ jobs:
- run: yarn run downloadsolc_assets_e2e && yarn run downloadsolc_assets_dist
- run: ls -la ./dist/apps/remix-ide/assets/js
- run: yarn run selenium-install || yarn run selenium-install
- run: sudo apt install zsh
- run:
name: Start Selenium
command: yarn run selenium
background: true
- run: zsh ./apps/remix-ide/ci/remixd_test.zsh
- run: ./apps/remix-ide/ci/remixd_test.zsh
- store_test_results:
path: ./reports/tests
- store_artifacts:

@ -1,4 +1,4 @@
#!/usr/bin/env zsh
#!/usr/bin/env bash
set -e
@ -9,11 +9,7 @@ TEST_EXITCODE=0
echo $SHELL
# install foundry
# undo set -e because this script won't find the correct shell
# set +e
curl -L https://foundry.paradigm.xyz | zsh
# redo set -e
# set -e
curl -L https://foundry.paradigm.xyz | bash || true
# export /home/circleci/.foundry/bin to PATH
export PATH=$PATH:/home/circleci/.foundry/bin
foundryup

Loading…
Cancel
Save