Skip to content

Commit ab8eb7e

Browse files
authored
Merge branch 'master' into feature/install_in_cmake
2 parents 7c09df6 + c6c761b commit ab8eb7e

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

.github/workflows/regression_tests_cpu_binaries.yml

+18-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Run Regression Tests for CPU nightly binaries
33
on:
44
# run every day at 6:15am
55
schedule:
6-
- cron: '15 6 * * *'
6+
- cron: '15 6 * * *'
77

88
concurrency:
99
group: ci-cpu-${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.run_number || github.ref }}
@@ -31,24 +31,39 @@ jobs:
3131
with:
3232
submodules: recursive
3333
- name: Setup conda with Python ${{ matrix.python-version }}
34+
if: matrix.os == 'macos-14'
35+
uses: conda-incubator/setup-miniconda@v3
36+
with:
37+
auto-update-conda: true
38+
channels: anaconda, conda-forge
39+
python-version: ${{ matrix.python-version }}
40+
- name: Setup conda with Python ${{ matrix.python-version }}
41+
if: matrix.os != 'macos-14'
3442
uses: s-weigand/setup-conda@v1
3543
with:
3644
update-conda: true
3745
python-version: ${{ matrix.python-version }}
3846
conda-channels: anaconda, conda-forge
39-
- run: conda --version
40-
- run: python --version
4147
- name: Setup Java 17
4248
uses: actions/setup-java@v3
4349
with:
4450
distribution: 'zulu'
4551
java-version: '17'
4652
- name: Checkout TorchServe
4753
uses: actions/checkout@v3
54+
- name: Run install dependencies and regression test
55+
if: matrix.os == 'macos-14'
56+
shell: bash -el {0}
57+
run: |
58+
conda info
59+
python ts_scripts/install_dependencies.py --environment=dev
60+
python test/regression_tests.py --binaries --${{ matrix.binaries }} --nightly
4861
- name: Install dependencies
62+
if: matrix.os != 'macos-14'
4963
run: |
5064
python ts_scripts/install_dependencies.py --environment=dev
5165
- name: Validate Torchserve CPU Regression
66+
if: matrix.os != 'macos-14'
5267
run: |
5368
python test/regression_tests.py --binaries --${{ matrix.binaries }} --nightly
5469

docs/Security.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
| Version | Supported |
66
|---------| ------------------ |
77
| 0.9.0 | :white_check_mark: |
8+
| 0.10.0 | :white_check_mark: |
89

910

1011
## How we do security
@@ -36,6 +37,7 @@ TorchServe as much as possible relies on automated tools to do security scanning
3637
2. Using private-key/certificate files
3738

3839
You can find more details in the [configuration guide](https://pytorch.org/serve/configuration.html#enable-ssl)
40+
6. TorchServe supports token authorization: check [documentation](https://github.com/pytorch/serve/blob/master/docs/token_authorization_api.md) for more information.
3941

4042

4143

0 commit comments

Comments
 (0)