Skip to content

Commit d7cc951

Browse files
authored
Merge pull request #3230 from opentensor/release/v10.0.1
Release/v10.0.1
2 parents 34fa24a + 68c8447 commit d7cc951

38 files changed

+447
-1093
lines changed

.github/workflows/_run-e2e-single.yaml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# WARNING: This file is used by multiple workflows. Please modify with caution. Any changes here may affect multiple
2+
# CI/CD pipelines.
3+
14
name: Run Single E2E Test with multiple Python versions
25

36
on:
@@ -13,6 +16,16 @@ on:
1316
required: true
1417
type: string
1518
description: JSON array of Python versions
19+
ref:
20+
required: false
21+
type: string
22+
description: Git ref to checkout
23+
default: ""
24+
artifact-name:
25+
required: false
26+
type: string
27+
description: Docker image artifact name
28+
default: "subtensor-localnet"
1629

1730
jobs:
1831
run-e2e:
@@ -28,6 +41,8 @@ jobs:
2841
steps:
2942
- name: Check-out repository
3043
uses: actions/checkout@v4
44+
with:
45+
ref: ${{ inputs.ref != '' && inputs.ref || github.ref }}
3146

3247
- name: Set up Python ${{ matrix.python-version }}
3348
uses: actions/setup-python@v5
@@ -57,10 +72,10 @@ jobs:
5772
- name: Download Cached Docker Image
5873
uses: actions/download-artifact@v4
5974
with:
60-
name: subtensor-localnet
75+
name: ${{ inputs.artifact-name }}
6176

6277
- name: Load Docker Image
63-
run: docker load -i subtensor-localnet.tar
78+
run: docker load -i ${{ inputs.artifact-name }}.tar
6479

6580
- name: Run test with retry
6681
env:

.github/workflows/e2e-subtensor-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
- read-python-versions
206206
strategy:
207207
fail-fast: false
208-
max-parallel: 16
208+
max-parallel: 64
209209
matrix:
210210
include: ${{ fromJson(needs.find-tests.outputs.test-files) }}
211211
uses: ./.github/workflows/_run-e2e-single.yaml

0 commit comments

Comments
 (0)