Skip to content

Commit

Permalink
Revert to Ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
ekilmer committed Sep 15, 2023
1 parent 4d8a184 commit b4270f1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 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-22.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['3.8', '3.10']
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
mypy --version
mypy
tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['3.8', '3.10']
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

manticore-server:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['3.8', '3.10']
Expand Down Expand Up @@ -155,15 +155,15 @@ jobs:
# Send notification when all tests have finished to combine coverage results
coverage-finish:
needs: tests
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2.1.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
upload:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
if: github.event_name == 'schedule'
needs: tests
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
strategy:
matrix:
type: ["ethereum_truffle", "ethereum_bench", "examples", "ethereum", "ethereum_vm", "native", "wasm", "wasm_sym", "other"]
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
./run_tests.sh
upload:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
needs: tests
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:20.04

LABEL name=Manticore
LABEL src="https://github.com/trailofbits/manticore"
Expand Down

0 comments on commit b4270f1

Please sign in to comment.