mirror of https://github.com/tqdm/tqdm.git
93 lines
2.7 KiB
YAML
93 lines
2.7 KiB
YAML
name: Check
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '36 1 * * SUN' # M H d m w (Sundays at 01:36)
|
|
jobs:
|
|
check:
|
|
if: github.event_name != 'pull_request' || github.head_ref != 'devel'
|
|
name: ${{ matrix.TOXENV }}
|
|
strategy:
|
|
matrix:
|
|
TOXENV:
|
|
- check
|
|
- perf
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.x'
|
|
- run: pip install -U tox
|
|
- run: tox
|
|
env:
|
|
TOXENV: ${{ matrix.TOXENV }}
|
|
asvfull:
|
|
if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) || github.event_name == 'schedule'
|
|
name: Benchmark (Full)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GH_TOKEN || github.token }}
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.x'
|
|
- name: Install
|
|
run: |
|
|
pip install -U wheel packaging
|
|
pip install -U virtualenv asv
|
|
git checkout master && git checkout -
|
|
asv machine --machine github-actions --yes
|
|
- name: Restore previous results
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: .asv
|
|
key: asv-${{ runner.os }}
|
|
restore-keys: |
|
|
asv-
|
|
- name: Benchmark
|
|
run: |
|
|
asv run -j 8 --interleave-processes --skip-existing v3.2.0..HEAD
|
|
- name: Build pages
|
|
run: |
|
|
git config --global user.email "$GIT_AUTHOR_EMAIL"
|
|
git config --global user.name "$GIT_AUTHOR_NAME"
|
|
asv gh-pages --no-push
|
|
git push -f origin gh-pages:gh-pages
|
|
env:
|
|
GIT_AUTHOR_NAME: ${{ github.actor }}
|
|
GIT_AUTHOR_EMAIL: ${{ github.actor }}@users.noreply.github.com
|
|
testasv:
|
|
if: github.ref != 'refs/heads/master' && ! startsWith(github.ref, 'refs/tags')
|
|
name: Benchmark (Branch)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.x'
|
|
- name: Install
|
|
run: |
|
|
pip install -U wheel packaging
|
|
pip install -U virtualenv asv
|
|
git checkout master && git checkout -
|
|
asv machine --machine github-actions --yes
|
|
- name: Restore previous results
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: .asv
|
|
key: asv-${{ runner.os }}
|
|
restore-keys: |
|
|
asv-
|
|
- name: Benchmark
|
|
run: |
|
|
asv continuous --interleave-processes --only-changed -f 1.25 master HEAD
|
|
CHANGES=$(asv compare --only-changed -f 1.25 master HEAD)
|
|
echo "$CHANGES" >> "$GITHUB_STEP_SUMMARY"
|
|
test -z "$CHANGES" || exit 1
|