Skip to content

Commit

Permalink
Merge pull request #378 from crytic/fix-ci
Browse files Browse the repository at this point in the history
removed etherlime from CI
  • Loading branch information
montyly authored Feb 13, 2023
2 parents d0a8778 + 6ab4d57 commit 40f58f7
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-2022"]
type: ["brownie", "buidler", "dapp", "embark", "etherlime", "hardhat", "solc", "truffle", "waffle", "foundry", "standard"]
type: ["brownie", "buidler", "dapp", "embark", "hardhat", "solc", "truffle", "waffle", "foundry", "standard"]
exclude:
# Currently broken, tries to pull git:// which is blocked by GH
- type: embark
Expand All @@ -35,19 +35,10 @@ jobs:
run: |
echo 'C:\msys64\mingw64\bin' >> "$GITHUB_PATH"
echo 'C:\msys64\usr\bin' >> "$GITHUB_PATH"
- name: Choose Node version
id: node
shell: bash
run: |
if [ "${{ matrix.type }}" = "etherlime" ]; then
echo 'version=10.17.0' >> "$GITHUB_OUTPUT"
else
echo 'version=lts/*' >> "$GITHUB_OUTPUT"
fi
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: ${{ steps.node.outputs.version }}
node-version: 'lts/*'
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 40f58f7

Please sign in to comment.