Skip to content

Commit da63f5a

Browse files
Merge pull request #1 from andreped/patch-1-CI-fix
Use Ubuntu 20.04 for CIs
2 parents b7adbd9 + a1983ba commit da63f5a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
build_wheels:
88
name: Build release
9-
runs-on: ubuntu-18.04
9+
runs-on: ubuntu-20.04
1010

1111
steps:
1212
- uses: actions/checkout@v3
@@ -27,7 +27,7 @@ jobs:
2727

2828
upload_pypi:
2929
needs: build_wheels
30-
runs-on: ubuntu-18.04
30+
runs-on: ubuntu-20.04
3131

3232
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
3333

.github/workflows/tests_full.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-18.04
13+
runs-on: ubuntu-20.04
1414

1515
if: startsWith(github.ref, 'refs/tags/v') != true
1616

@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ${{ matrix.os }}
4040
strategy:
4141
matrix:
42-
os: [ windows-2019, ubuntu-18.04, macos-11 ]
42+
os: [ windows-2019, ubuntu-20.04, macos-11 ]
4343
python-version: [ 3.7, 3.8, 3.9 ]
4444
tf-version: [2.7.0, 2.8.0, 2.9.0]
4545

@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ${{ matrix.os }}
7272
strategy:
7373
matrix:
74-
os: [ windows-2019, ubuntu-18.04, macos-11 ]
74+
os: [ windows-2019, ubuntu-20.04, macos-11 ]
7575
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
7676
pytorch-version: [1.8.0, 1.9.0, 1.10.0, 1.11.0, 1.12.0, 1.13.0]
7777
exclude:

.github/workflows/tests_quick.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-18.04
13+
runs-on: ubuntu-20.04
1414
steps:
1515
- uses: actions/checkout@v1
1616
- name: Set up Python 3.6
@@ -33,7 +33,7 @@ jobs:
3333

3434
test-tf:
3535
needs: build
36-
runs-on: ubuntu-18.04
36+
runs-on: ubuntu-20.04
3737

3838
steps:
3939
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)