Skip to content

Commit

Permalink
Update CI and suggest to use pip3 instead of pip (#2409)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrieco-tob authored Mar 24, 2021
1 parent 3da969b commit fd69381
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
# needs to run only on pull_request
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
Expand All @@ -39,7 +39,7 @@ jobs:
mypy --version
mypy
tests:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
strategy:
matrix:
type: ["ethereum_truffle", "ethereum_bench", "examples", "ethereum", "ethereum_vm", "native", "wasm", "wasm_sym", "other"]
Expand Down Expand Up @@ -84,15 +84,15 @@ jobs:
# Send notification when all tests have finished to combine coverage results
coverage-finish:
needs: tests
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- name: Coveralls Finished
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
upload:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
if: github.event_name == 'schedule'
needs: tests
steps:
Expand Down
2 changes: 1 addition & 1 deletion manticore/utils/install_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
def ensure_native_deps():
if not has_native:
raise ImportError(
"Missing some packages for native binary analysis. Please install them with pip install manticore[native]."
"Missing some packages for native binary analysis. Please install them with pip3 install manticore[native]."
)


Expand Down

0 comments on commit fd69381

Please sign in to comment.