Skip to content

Commit bf9c2c7

Browse files
committed
add back linux gpu jobs
1 parent 0260313 commit bf9c2c7

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
@@ -246,10 +246,12 @@ def indent(indentation, data_list):
246246

247247
def unittest_workflows(indentation=6):
248248
jobs = []
249-
for os_type in ["windows", "macos"]:
249+
for os_type in ["linux", "windows", "macos"]:
250250
for device_type in ["cpu", "gpu"]:
251251
if os_type == "macos" and device_type == "gpu":
252252
continue
253+
if os_type == "linux" and device_type == "cpu":
254+
continue
253255
for i, python_version in enumerate(PYTHON_VERSIONS):
254256
job = {
255257
"name": f"unittest_{os_type}_{device_type}_py{python_version}",

0 commit comments

Comments
 (0)