Skip to content

Commit 7c3c706

Browse files
committed
testing nightly binary
1 parent 952a7dd commit 7c3c706

File tree

1 file changed

+39
-1
lines changed

1 file changed

+39
-1
lines changed

.github/workflows/regression_tests_cpu_binaries.yml

+39-1
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,42 @@ jobs:
4646
python ts_scripts/install_dependencies.py --environment=dev
4747
- name: Validate Torchserve CPU Regression
4848
run: |
49-
python test/regression_tests.py --binaries --${{ matrix.binaries }} --nightly
49+
python test/regression_tests.py --binaries --${{ matrix.binaries }} --nightly
50+
51+
regression-cpu-nightly-binaries-macos-14:
52+
# Job for macOS-14 with Python 3.10
53+
runs-on: macos-14
54+
strategy:
55+
fail-fast: false
56+
matrix:
57+
binaries: ["pypi", "conda"]
58+
steps:
59+
- uses: actions/checkout@v3
60+
with:
61+
submodules: recursive
62+
- name: Setup Python for M1
63+
uses: actions/setup-python@v5
64+
with:
65+
python-version: '3.10'
66+
- name: Setup conda with Python 3.10
67+
uses: conda-incubator/setup-miniconda@v3
68+
with:
69+
auto-update-conda: true
70+
python-version: '3.10'
71+
- name: Setup Java 17
72+
uses: actions/setup-java@v3
73+
with:
74+
distribution: 'zulu'
75+
java-version: '17'
76+
- name: Checkout TorchServe
77+
uses: actions/checkout@v3
78+
- name: Conda info
79+
shell: bash -el {0}
80+
run: conda info &&
81+
python ts_scripts/install_dependencies.py --environment=dev &&
82+
python test/regression_tests.py --binaries --${{ matrix.binaries }} --nightly
83+
- name: Conda list
84+
shell: pwsh
85+
run: conda list
86+
- run: conda --version
87+
- run: python --version

0 commit comments

Comments
 (0)