Bump io.netty:netty-all from 4.1.107.Final to 4.1.111.Final in /plugins #3677
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Regression Tests on CPU | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
merge_group: | |
concurrency: | |
group: ci-cpu-${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.run_number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
regression-cpu: | |
# creates workflows for OS: ubuntu, macOS M1 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, macos-latest] | |
steps: | |
- name: Setup Python for M1 | |
if: matrix.os == 'macos-latest' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
architecture: arm64 | |
- name: Setup Python for all other OS | |
if: matrix.os != 'macos-latest' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
architecture: x64 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Checkout TorchServe | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: | | |
python ts_scripts/install_dependencies.py --environment=dev | |
- name: Torchserve Regression Tests | |
env: | |
TS_MAC_ARM64_CPU_ONLY: ${{ matrix.os == 'macos-latest' && 'True' || 'False' }} | |
run: | | |
python test/regression_tests.py |