Skip to content

Commit 627cc57

Browse files
author
udaij12
committed
removing miniconda
1 parent 60727af commit 627cc57

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

.github/workflows/regression_tests_gpu_binaries.yml

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
name: Run Regression Tests for GPU nightly binaries
22

33
on:
4-
# run every day at 6:15am
5-
schedule:
6-
- cron: '15 6 * * *'
4+
push:
5+
branches:
6+
- ci_fixes
7+
8+
# # run every day at 6:15am
9+
# schedule:
10+
# - cron: '15 6 * * *'
711

812
concurrency:
913
group: ci-cpu-${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.run_number || github.ref }}
@@ -30,10 +34,10 @@ jobs:
3034
uses: actions/checkout@v3
3135
with:
3236
submodules: recursive
33-
- uses: conda-incubator/setup-miniconda@v2
34-
with:
35-
miniconda-version: "latest"
36-
python-version: ${{ matrix.python-version }}
37+
# - uses: conda-incubator/setup-miniconda@v2
38+
# with:
39+
# miniconda-version: "latest"
40+
# python-version: ${{ matrix.python-version }}
3741
- name: Setup Python ${{ matrix.python-version }}
3842
uses: actions/setup-python@v4
3943
with:
@@ -45,6 +49,7 @@ jobs:
4549
update-conda: true
4650
python-version: ${{ matrix.python-version }}
4751
conda-channels: anaconda, conda-forge
52+
- run: python --version
4853
- run: conda --version
4954
- name: Setup Java 17
5055
uses: actions/setup-java@v3
@@ -53,17 +58,17 @@ jobs:
5358
java-version: '17'
5459
- name: Install dependencies
5560
shell: bash -el {0}
56-
run: |
61+
run: |
5762
echo "=====CHECK ENV AND PYTHON VERSION===="
5863
/home/ubuntu/actions-runner/_work/serve/serve/3/condabin/conda info --envs
5964
python --version
6065
echo "=====RUN INSTALL DEPENDENCIES===="
6166
python ts_scripts/install_dependencies.py --environment=dev --cuda=cu121
6267
- name: Torchserve Regression Tests
63-
shell: bash -el {0}
68+
shell: bash -el {0}
6469
run: |
6570
echo "=====CHECK ENV AND PYTHON VERSION===="
6671
/home/ubuntu/actions-runner/_work/serve/serve/3/condabin/conda info --envs
6772
python --version
6873
echo "=====RUN REGRESSION TESTS===="
69-
python test/regression_tests.py --binaries --${{ matrix.binaries }} --nightly
74+
python test/regression_tests.py --binaries --${{ matrix.binaries }} --nightly

0 commit comments

Comments
 (0)