8000 [conda] Remove conda usage from upload test stats while running workf… · pytorch/pytorch@de20d76 · GitHub
[go: up one dir, main page]

Skip to content

Commit de20d76

Browse files
clee2000pytorchmergebot
authored andcommitted
[conda] Remove conda usage from upload test stats while running workflow (#152431)
The original uses python 3.10 and the base is 3.9 but I think that's ok Pull Request resolved: #152431 Approved by: https://github.com/atalman
1 parent f84062f commit de20d76

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/upload-test-stats-while-running.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,12 @@ jobs:
2424
- name: Setup Linux
2525
uses: ./.github/actions/setup-linux
2626

27-
- name: Setup miniconda
28-
uses: pytorch/test-infra/.github/actions/setup-miniconda@main
29-
with:
30-
python-version: "3.10"
31-
3227
- name: Install requirements
3328
run: |
34-
${CONDA_RUN} pip install requests==2.32.2 boto3==1.35.42
29+
python3 -m pip install requests==2.32.2 boto3==1.35.42
3530
3631
- name: Upload test stats
3732
env:
3833
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3934
run: |
40-
${CONDA_RUN} python -m tools.stats.upload_test_stats_running_jobs
35+
python3 -m tools.stats.upload_test_stats_running_jobs

0 commit comments

Comments
 (0)
0