Skip to content

Commit eda0644

Browse files
committed
tc
1 parent cc0dde6 commit eda0644

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

.github/workflows/build-tutorials.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
include:
19-
- { shard: 1, num_shards: 15, runner: "linux.g5.12xlarge.nvidia.gpu" }
2019
- { shard: 2, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
21-
- { shard: 3, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
22-
- { shard: 4, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
23-
- { shard: 5, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
24-
- { shard: 6, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
25-
- { shard: 7, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
26-
- { shard: 8, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
27-
- { shard: 9, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
28-
- { shard: 10, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
29-
- { shard: 11, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
30-
- { shard: 12, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
31-
- { shard: 13, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
32-
- { shard: 14, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
33-
- { shard: 15, num_shards: 15, runner: "linux.g5.4xlarge.nvidia.gpu" }
3420
fail-fast: false
3521
runs-on: ${{ matrix.runner }}
3622
steps:

.jenkins/sphinx_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def main() -> None:
2727
relative_path = Path(os.path.relpath(file, "docs"))
2828
print(relative_path)
2929
print(relative_path.parent)
30-
os.makedirs(os.path.dirname(f"/tmp/docs_to_zip/{relative_path.parent}"), exist_ok=True)
30+
os.makedirs(os.path.dirname(f"/tmp/docs_to_zip/{relative_path}"), exist_ok=True)
3131
shutil.copy(file, f"/tmp/docs_to_zip/{relative_path}")
3232
subprocess.check_output(["git", "reset", "--hard", "HEAD"])
3333
shutil.move("/tmp/docs_to_zip", "docs")

0 commit comments

Comments
 (0)