Skip to content

[Infra] Update performance tests. #50

[Infra] Update performance tests.

[Infra] Update performance tests. #50

Workflow file for this run

name: performance
on:
release:
types: [ published ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'alibaba/code-data-share-for-python' }}
jobs:
perf-import:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
os: [ ubuntu-latest, macOS-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- uses: s-weigand/setup-conda@v1
with:
conda-channels: conda-forge
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install nox pyperf
- name: Perf importing third-party packages
run: |
nox -s test_import_third_party_perf-${{ matrix.python }}
- uses: actions/upload-artifact@v3
with:
name: perf-import
path: "*.json"
perf-import-result:
runs-on: ubuntu-latest
needs: [ perf-import ]
steps:
- uses: actions/setup-python@v4
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: perf-import
path: ./
pyperformance:
if: false
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- uses: s-weigand/setup-conda@v1
with:
conda-channels: conda-forge
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install nox pyperf
- name: Pyperformance tests against cds
run: |
sh scripts/pyperformance.sh