File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ concurrency:
18
18
jobs :
19
19
activate-tests :
20
20
name : Check whether we should run tests or not
21
- runs-on : ubuntu-latest
21
+ runs-on : ubuntu-22.04
22
22
23
23
steps :
24
24
- uses : actions/checkout@v3
@@ -36,10 +36,10 @@ jobs:
36
36
fail-fast : false
37
37
matrix :
38
38
tf-version : [tensorflow, tf-nightly]
39
- os-version : [ubuntu-latest , macos-latest]
39
+ os-version : [ubuntu-22.04 , macos-latest]
40
40
exclude :
41
41
- tf-version : tensorflow
42
- os-version : ubuntu-latest
42
+ os-version : ubuntu-22.04
43
43
44
44
name : ' Core TFDS tests'
45
45
uses : ./.github/workflows/pytest-template.yml
Original file line number Diff line number Diff line change 14
14
jobs :
15
15
shards-job :
16
16
name : Generate shards
17
- runs-on : ubuntu-latest
17
+ runs-on : ubuntu-22.04
18
18
19
19
steps :
20
20
- name : Create variables
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ concurrency:
32
32
jobs :
33
33
activate-tests :
34
34
name : Check whether we should run tests or not
35
- runs-on : ubuntu-latest
35
+ runs-on : ubuntu-22.04
36
36
37
37
steps :
38
38
- uses : actions/checkout@v3
50
50
uses : ./.github/workflows/pytest-template.yml
51
51
with :
52
52
tf-version : tensorflow
53
- os-version : ubuntu-latest
53
+ os-version : ubuntu-22.04
54
54
55
55
huggingface-pytest-job :
56
56
needs : activate-tests
59
59
# HuggingFace tests need to be run separately because they're disabled without installed
60
60
# `datasets` library.
61
61
name : ' HuggingFace Python 3.10 tests'
62
- runs-on : ubuntu-latest
62
+ runs-on : ubuntu-22.04
63
63
timeout-minutes : 30
64
64
65
65
steps :
81
81
if : ${{ needs.activate-tests.outputs.status }}
82
82
83
83
name : ' Github API tests'
84
- runs-on : ubuntu-latest
84
+ runs-on : ubuntu-22.04
85
85
timeout-minutes : 30
86
86
87
87
steps :
@@ -100,7 +100,7 @@ jobs:
100
100
if : ${{ needs.activate-tests.outputs.status }}
101
101
102
102
name : ' Notebook tests'
103
- runs-on : ubuntu-latest
103
+ runs-on : ubuntu-22.04
104
104
timeout-minutes : 30
105
105
106
106
steps :
Original file line number Diff line number Diff line change 17
17
publish-job :
18
18
# Prevents action from running on forks.
19
19
if : github.repository == 'tensorflow/datasets'
20
- runs-on : ubuntu-latest
20
+ runs-on : ubuntu-22.04
21
21
22
22
steps :
23
23
- name : Set nightly build variables
Original file line number Diff line number Diff line change 19
19
publish-job :
20
20
# Prevents action from running on forks and non-master branches.
21
21
if : github.repository == 'tensorflow/datasets'
22
- runs-on : ubuntu-latest
22
+ runs-on : ubuntu-22.04
23
23
permissions :
24
24
contents : write
25
25
You can’t perform that action at this time.
0 commit comments