Test #474
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: Test | |
on: | |
push: | |
pull_request: | |
schedule: [{cron: '30 23 * * 6'}] # M H d m w (Sat at 23:30) | |
workflow_dispatch: | |
jobs: | |
check: | |
if: github.event_name != 'pull_request' || !contains('OWNER,MEMBER,COLLABORATOR', github.event.pull_request.author_association) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: set PYSHA | |
run: echo "PYSHA=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit|${{ env.PYSHA }}|${{ hashFiles('.pre-commit-config.yaml') }} | |
- name: dependencies | |
run: | | |
pip install -U pre-commit | |
sudo apt-get install -yqq clang-format | |
- uses: reviewdog/action-setup@v1 | |
- if: github.event_name == 'push' || github.event_name == 'pull_request' | |
name: comment | |
run: | | |
if [[ $EVENT == pull_request ]]; then | |
REPORTER=github-pr-review | |
else | |
REPORTER=github-check | |
fi | |
pre-commit run -a todo | reviewdog -efm="%f:%l: %m" -name=TODO -tee -reporter=$REPORTER -filter-mode nofilter | |
pre-commit run -a flake8 | reviewdog -f=pep8 -name=flake8 -tee -reporter=$REPORTER -filter-mode nofilter | |
pre-commit run -a mypy | reviewdog -efm="%f:%l: %m" -name=mypy -tee -reporter=$REPORTER -filter-mode nofilter | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
EVENT: ${{ github.event_name }} | |
- run: pre-commit run -a --show-diff-on-failure | |
test: | |
if: github.event_name != 'pull_request' || !contains('OWNER,MEMBER,COLLABORATOR', github.event.pull_request.author_association) | |
name: py${{ matrix.python }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [3.7, 3.11] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- run: pip install -U -e .[dev] | |
env: | |
# https://github.com/scikit-build/scikit-build/issues/740 | |
SETUPTOOLS_ENABLE_FEATURES: legacy-editable | |
- run: pytest | |
- uses: codecov/codecov-action@v3 | |
- name: compile -Wall | |
run: | | |
git clean -Xdf | |
pip install toml | |
python -c 'import toml; c=toml.load("pyproject.toml"); print("\0".join(c["build-system"]["requires"]), end="")' \ | |
| xargs -0 pip install | |
python setup.py build -- -DCUVEC_DEBUG=1 \ | |
-DCMAKE_CXX_FLAGS="-Wall -Wextra -Wpedantic -Werror -Wno-missing-field-initializers -Wno-unused-parameter -Wno-cast-function-type" | |
cuda: | |
if: github.event_name != 'pull_request' || !contains('OWNER,MEMBER,COLLABORATOR', github.event.pull_request.author_association) | |
name: CUDA py${{ matrix.python }} | |
runs-on: [self-hosted, cuda, python] | |
strategy: | |
matrix: | |
python: [3.7, 3.11] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run setup-python | |
run: setup-python -p${{ matrix.python }} 'cuda-version<12' cupy | |
- run: pip install -U -e .[dev] | |
env: | |
# https://github.com/scikit-build/scikit-build/issues/740 | |
SETUPTOOLS_ENABLE_FEATURES: legacy-editable | |
- run: pytest | |
- uses: codecov/codecov-action@v3 | |
- name: compile -Wall | |
run: | | |
git clean -Xdf | |
pip install toml | |
python -c 'import toml; c=toml.load("pyproject.toml"); print("\0".join(c["build-system"]["requires"]), end="")' \ | |
| xargs -0 pip install | |
python setup.py build -- -DCUVEC_DEBUG=1 \ | |
-DCMAKE_CXX_FLAGS="-Wall -Wextra -Wpedantic -Werror -Wno-missing-field-initializers -Wno-unused-parameter -Wno-cast-function-type" | |
- name: Post Run setup-python | |
run: setup-python -p${{ matrix.python }} -Dr | |
if: ${{ always() }} | |
deploy: | |
needs: [check, test, cuda] | |
name: PyPI Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GH_TOKEN || github.token }} | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- id: dist | |
uses: casperdcl/deploy-pypi@v2 | |
with: | |
build: -s | |
password: ${{ secrets.PYPI_TOKEN }} | |
upload: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }} | |
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
name: Release | |
run: | | |
changelog=$(git log --pretty='format:%d%n- %s%n%b---' $(git tag --sort=v:refname | tail -n2 | head -n1)..HEAD) | |
tag="${GITHUB_REF#refs/tags/}" | |
gh release create --title "CuVec $tag stable" --draft --notes "$changelog" "$tag" dist/${{ steps.dist.outputs.targz }} | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN || github.token }} | |
- name: Docs | |
run: | | |
pushd docs | |
pip install -U -r requirements.txt | |
PYTHONPATH=. pydoc-markdown --build --site-dir=../../../dist/site | |
popd | |
- if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') || github.event_name == 'workflow_dispatch' }} | |
uses: casperdcl/push-dir@v1 | |
with: | |
message: update static site | |
branch: gh-pages | |
history: false | |
dir: dist/site | |
nojekyll: true | |
name: AMYPAD[bot] | |
email: [email protected] |