@@ -43,22 +43,24 @@ jobs:
43
43
matrix :
44
44
# To switch on windows-2022/latest, please verify the bazel version:
45
45
# https://github.com/bazelbuild/bazel/issues/14232#issuecomment-1011247429
46
- os : ['macos-12', 'windows-2019', 'ubuntu-20.04']
46
+ os : ['macos-12', 'ubuntu-20.04']
47
+ # Removing windows builds due to broken upstream package https://github.com/tensorflow/tensorflow/issues/61830
48
+ # os: ['macos-12', 'windows-2019', 'ubuntu-20.04']
47
49
py-version : ['3.9', '3.10', '3.11']
48
- tf-version : ['2.12 .1', '2.13 .0', '2.14 .0']
50
+ tf-version : ['2.13 .1', '2.14 .0', '2.15 .0']
49
51
cpu : ['x86']
50
52
include :
51
53
- os : ' macos-12'
52
54
cpu : ' arm64'
53
- tf-version : ' 2.14 .0'
55
+ tf-version : ' 2.15 .0'
54
56
py-version : ' 3.9'
55
57
- os : ' macos-12'
56
58
cpu : ' arm64'
57
- tf-version : ' 2.14 .0'
59
+ tf-version : ' 2.15 .0'
58
60
py-version : ' 3.10'
59
61
- os : ' macos-12'
60
62
cpu : ' arm64'
61
- tf-version : ' 2.14 .0'
63
+ tf-version : ' 2.15 .0'
62
64
py-version : ' 3.11'
63
65
fail-fast : false
64
66
steps :
69
71
script : |
70
72
const commit_details = await github.git.getCommit({owner: context.repo.owner, repo: context.repo.repo, commit_sha: context.sha});
71
73
return commit_details.data.author.date
72
- - if : matrix.tf-version != '2.14 .0'
74
+ - if : matrix.tf-version != '2.15 .0'
73
75
shell : bash
74
76
run : echo "SKIP_CUSTOM_OP_TESTS=--skip-custom-ops" >> $GITHUB_ENV
75
77
- if : github.event_name == 'push'
@@ -102,22 +104,24 @@ jobs:
102
104
runs-on : ubuntu-20.04
103
105
strategy :
104
106
matrix :
105
- os : ['macOS', 'Windows', 'Linux']
107
+ os : ['macOS', 'Linux']
108
+ # Removing windows builds due to broken upstream package https://github.com/tensorflow/tensorflow/issues/61830
109
+ # os: ['macOS', 'Windows', 'Linux']
106
110
py-version : ['3.9', '3.10', '3.11']
107
- tf-version : ['2.14 .0']
111
+ tf-version : ['2.15 .0']
108
112
cpu : ['x86']
109
113
include :
110
114
- os : ' macOS'
111
115
cpu : ' arm64'
112
- tf-version : ' 2.14 .0'
116
+ tf-version : ' 2.15 .0'
113
117
py-version : ' 3.9'
114
118
- os : ' macOS'
115
119
cpu : ' arm64'
116
- tf-version : ' 2.14 .0'
120
+ tf-version : ' 2.15 .0'
117
121
py-version : ' 3.10'
118
122
- os : ' macOS'
119
123
cpu : ' arm64'
120
- tf-version : ' 2.14 .0'
124
+ tf-version : ' 2.15 .0'
121
125
py-version : ' 3.11'
122
126
fail-fast : false
123
127
if : (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'release'
0 commit comments