Skip to content

Commit e86a622

Browse files
committed
add back linux gpu jobs
1 parent 1abffad commit e86a622

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

.circleci/config.yml

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.circleci/regenerate.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,12 @@ def indent(indentation, data_list):
233233

234234
def unittest_workflows(indentation=6):
235235
jobs = []
236-
for os_type in ["windows", "macos"]:
236+
for os_type in ["linux", "windows", "macos"]:
237237
for device_type in ["cpu", "gpu"]:
238238
if os_type == "macos" and device_type == "gpu":
239239
continue
240+
if os_type == "linux" and device_type == "cpu":
241+
continue
240242
for i, python_version in enumerate(PYTHON_VERSIONS):
241243
job = {
242244
"name": f"unittest_{os_type}_{device_type}_py{python_version}",

0 commit comments

Comments
 (0)