15
15
- r*
16
16
17
17
env :
18
- MIN_PY_VERSION : ' 3.7 '
19
- MAX_PY_VERSION : ' 3.10 '
18
+ MIN_PY_VERSION : ' 3.9 '
19
+ MAX_PY_VERSION : ' 3.11 '
20
20
21
21
jobs :
22
22
test-with-bazel :
23
23
name : Test with bazel
24
- runs-on : ubuntu-18 .04
24
+ runs-on : ubuntu-20 .04
25
25
steps :
26
26
- uses : actions/checkout@v2
27
27
- uses : actions/setup-python@v2
@@ -40,22 +40,22 @@ jobs:
40
40
matrix :
41
41
# To switch on windows-2022/latest, please verify the bazel version:
42
42
# https://github.com/bazelbuild/bazel/issues/14232#issuecomment-1011247429
43
- os : ['macos-12', 'windows-2019', 'ubuntu-18 .04']
44
- py-version : ['3.7 ', '3.8 ', '3.9 ', '3.10 ']
45
- tf-version : ['2.9.3 ', '2.10.1 ', '2.11 .0']
43
+ os : ['macos-12', 'windows-2019', 'ubuntu-20 .04']
44
+ py-version : ['3.8 ', '3.9 ', '3.10 ', '3.11 ']
45
+ tf-version : ['2.10.1 ', '2.11.0 ', '2.12 .0']
46
46
cpu : ['x86']
47
47
include :
48
48
- os : ' macos-12'
49
49
cpu : ' arm64'
50
- tf-version : ' 2.11 .0'
50
+ tf-version : ' 2.12 .0'
51
51
py-version : ' 3.8'
52
52
- os : ' macos-12'
53
53
cpu : ' arm64'
54
- tf-version : ' 2.11 .0'
54
+ tf-version : ' 2.12 .0'
55
55
py-version : ' 3.9'
56
56
- os : ' macos-12'
57
57
cpu : ' arm64'
58
- tf-version : ' 2.11 .0'
58
+ tf-version : ' 2.12 .0'
59
59
py-version : ' 3.10'
60
60
fail-fast : false
61
61
steps :
66
66
script : |
67
67
const commit_details = await github.git.getCommit({owner: context.repo.owner, repo: context.repo.repo, commit_sha: context.sha});
68
68
return commit_details.data.author.date
69
- - if : matrix.tf-version != '2.10 .0'
69
+ - if : matrix.tf-version != '2.12 .0'
70
70
shell : bash
71
71
run : echo "SKIP_CUSTOM_OP_TESTS=--skip-custom-ops" >> $GITHUB_ENV
72
72
- if : github.event_name == 'push'
@@ -76,11 +76,12 @@ jobs:
76
76
- uses : actions/setup-python@v2
77
77
with :
78
78
python-version : ${{ matrix.py-version }}
79
- - if : matrix.os != 'ubuntu-18 .04'
79
+ - if : matrix.os != 'ubuntu-20 .04'
80
80
name : Setup Bazel
81
81
# Ubuntu bazel is run inside of the docker image
82
82
run : bash tools/install_deps/install_bazelisk.sh ./
83
- - name : Build wheels
83
+ - if : matrix.py-version != '3.11' || matrix.tf-version == '2.12.0'
84
+ name : Build wheels
84
85
env :
85
86
OS : ${{ runner.os }}
86
87
PY_VERSION : ${{ matrix.py-version }}
@@ -89,32 +90,33 @@ jobs:
89
90
CPU : ${{ matrix.cpu }}
90
91
shell : bash
91
92
run : bash .github/workflows/make_wheel_${OS}_${CPU}.sh
92
- - uses : actions/upload-artifact@v1
93
+ - if : matrix.py-version != '3.11' || matrix.tf-version == '2.12.0'
94
+ uses : actions/upload-artifact@v1
93
95
with :
94
96
name : ${{ runner.os }}-${{ matrix.py-version }}-tf${{ matrix.tf-version }}-${{ matrix.cpu }}-wheel
95
97
path : wheelhouse
96
98
upload-wheels :
97
99
name : Publish wheels to PyPi
98
100
needs : [release-wheel, test-with-bazel]
99
- runs-on : ubuntu-18 .04
101
+ runs-on : ubuntu-20 .04
100
102
strategy :
101
103
matrix :
102
104
os : ['macOS', 'Windows', 'Linux']
103
- py-version : ['3.7 ', '3.8 ', '3.9 ', '3.10 ']
104
- tf-version : ['2.11 .0']
105
+ py-version : ['3.8 ', '3.9 ', '3.10 ', '3.11 ']
106
+ tf-version : ['2.12 .0']
105
107
cpu : ['x86']
106
108
include :
107
109
- os : ' macOS'
108
110
cpu : ' arm64'
109
- tf-version : ' 2.11 .0'
111
+ tf-version : ' 2.12 .0'
110
112
py-version : ' 3.8'
111
113
- os : ' macOS'
112
114
cpu : ' arm64'
113
- tf-version : ' 2.11 .0'
115
+ tf-version : ' 2.12 .0'
114
116
py-version : ' 3.9'
115
117
- os : ' macOS'
116
118
cpu : ' arm64'
117
- tf-version : ' 2.11 .0'
119
+ tf-version : ' 2.12 .0'
118
120
py-version : ' 3.10'
119
121
fail-fast : false
120
122
if : (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'release'
@@ -134,7 +136,7 @@ jobs:
134
136
upload-dev-container :
135
137
name : Upload dev container to DockerHub
136
138
needs : [release-wheel, test-with-bazel]
137
- runs-on : ubuntu-18 .04
139
+ runs-on : ubuntu-20 .04
138
140
env :
139
141
PY_VERSION : ' 3.9'
140
142
if : (github.event_name == 'push' && github.ref == 'refs/heads/master')
0 commit comments