Skip to content

ci/test: run jobs on ubuntu-20.04, instead of ubuntu-18.04 #1978

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

Closed
wants to merge 1 commit into from
Closed
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
22 changes: 11 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:

Build:
name: 'B: Building VtR'
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:

- uses: actions/setup-python@v2
Expand All @@ -86,7 +86,7 @@ jobs:


Format:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -109,7 +109,7 @@ jobs:

UniTests:
name: 'U: C++ Unit Tests'
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:

- uses: actions/setup-python@v2
Expand All @@ -126,7 +126,7 @@ jobs:

Warnings:
name: 'W: Check Compilation Warnings'
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:

- uses: actions/setup-python@v2
Expand All @@ -148,7 +148,7 @@ jobs:


Regression:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
vtr_flow/**/parse_results*.txt

Sanitized:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:

ODINII:
name: 'ODIN-II Basic Test'
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:

- uses: actions/setup-python@v2
Expand All @@ -273,7 +273,7 @@ jobs:

VQM2BLIF:
name: 'VQM2BLIF Basic Tests'
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:

- uses: actions/setup-python@v2
Expand All @@ -294,7 +294,7 @@ jobs:


YOSYSODINII:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:


Compatibility:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -373,7 +373,7 @@ jobs:
- VQM2BLIF
- YOSYSODINII
- Compatibility
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:

- uses: actions/setup-python@v2
Expand Down