Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed etherlime from CI #378

Merged
merged 5 commits into from
Feb 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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