Merge pull request #1546 from Pavan-Nambi/dev-ci

chore(CI):removing solc-select install all lines
pull/1569/head
Feist Josselin 2 years ago committed by GitHub
commit a6ca165016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      .github/workflows/IR.yml
  2. 5
      .github/workflows/ci.yml
  3. 3
      .github/workflows/detectors.yml
  4. 3
      .github/workflows/features.yml

@ -34,9 +34,14 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
pip install ".[dev]" pip install ".[dev]"
solc-select install all solc-select install 0.5.0
solc-select use 0.8.11 solc-select use 0.8.11 --always-install
- name: Install old solc
if: matrix.os == 'ubuntu-latest'
run: solc-select install 0.4.0
- name: Test with pytest - name: Test with pytest
run: | run: |
pytest tests/test_ssa_generation.py pytest tests/test_ssa_generation.py

@ -55,8 +55,9 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
pip install ".[dev]" pip install ".[dev]"
solc-select install all solc-select use 0.4.25 --always-install
solc-select use 0.5.1 solc-select use 0.8.0 --always-install
solc-select use 0.5.1 --always-install
pip install typing_extensions==4.1.1 pip install typing_extensions==4.1.1
pip install importlib_metadata==4.8.3 pip install importlib_metadata==4.8.3

@ -35,8 +35,7 @@ jobs:
run: | run: |
pip install ".[dev]" pip install ".[dev]"
solc-select install all solc-select use 0.7.3 --always-install
solc-select use 0.7.3
- name: Test with pytest - name: Test with pytest
run: | run: |
pytest tests/test_detectors.py pytest tests/test_detectors.py

@ -35,8 +35,7 @@ jobs:
run: | run: |
pip install ".[dev]" pip install ".[dev]"
solc-select install all solc-select use 0.8.0 --always-install
solc-select use 0.8.0
cd tests/test_node_modules/ cd tests/test_node_modules/
npm install hardhat npm install hardhat

Loading…
Cancel
Save