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

@ -108,7 +108,7 @@ jobs:
name: Start Selenium
command: yarn run selenium
background: true
- run: bash ./apps/remix-ide/ci/remixd_test.sh
- run: zsh ./apps/remix-ide/ci/remixd_test.zsh
- store_test_results:
path: ./reports/tests
- store_artifacts:

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env zsh
set -e
@ -9,7 +9,11 @@ TEST_EXITCODE=0
echo $SHELL
# install foundry
curl -L https://foundry.paradigm.xyz | bash || true
# 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
# export /home/circleci/.foundry/bin to PATH
export PATH=$PATH:/home/circleci/.foundry/bin
foundryup
Loading…
Cancel
Save