-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
251 additions
and
102 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Build v Docs and Publish | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Test TrajDL on tag v"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
environment: | ||
name: testpypi | ||
url: https://test.pypi.org/p/trajdl | ||
|
||
permissions: | ||
contents: write # IMPORTANT: mandatory for making GitHub Releases | ||
id-token: write # IMPORTANT: mandatory for sigstore | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.12"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
|
||
- name: Download all artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: dist | ||
name: dist-${{ github.event.workflow_run.head_branch }}-${{ github.sha }} | ||
run-id: ${{ github.event.workflow_run.id }} | ||
github-token: ${{ secrets.PAT_FOR_ARTIFACTS }} | ||
|
||
- name: Sign the dists with Sigstore | ||
uses: sigstore/[email protected] | ||
with: | ||
inputs: >- | ||
./dist/*.tar.gz | ||
./dist/*.whl | ||
- name: Create GitHub Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT_FOR_RELEASE }} | ||
run: >- | ||
gh release create | ||
'${{ github.event.workflow_run.head_branch }}' | ||
--repo '${{ github.repository }}' | ||
--notes "" | ||
- name: Upload artifact signatures to GitHub Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT_FOR_RELEASE }} | ||
# Upload to GitHub Release using the `gh` CLI. | ||
# `dist/` contains the built packages, and the | ||
# sigstore-produced signatures and certificates. | ||
run: >- | ||
gh release upload | ||
'${{ github.event.workflow_run.head_branch }}' dist/** | ||
--repo '${{ github.repository }}' | ||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
repository-url: https://test.pypi.org/legacy/ | ||
user: __token__ | ||
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
packages_dir: dist/ | ||
skip_existing: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
name: Test TrajDL on tag v | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
build_wheels: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: pypa/[email protected] | ||
|
||
- name: Check wheels | ||
run: | | ||
ls wheelhouse | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist-${{ github.ref_name }}-${{ github.sha }}-wheel | ||
path: wheelhouse/*.whl | ||
retention-days: 1 | ||
overwrite: true | ||
|
||
test_wheels_and_build_sdist: | ||
needs: [build_wheels] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.10", "3.11", "3.12"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
|
||
- name: Download all artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dist-${{ github.ref_name }}-${{ github.sha }}-wheel | ||
path: dist | ||
github-token: ${{ secrets.PAT_FOR_ARTIFACTS }} | ||
|
||
- name: Install TrajDL | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu | ||
PYTHON_VERSION=${{ matrix.python-version }} | ||
PYTHON_VERSION_NO_DOT="${PYTHON_VERSION/./}" | ||
python -m pip install "dist/trajdl-0.1.0-cp${PYTHON_VERSION_NO_DOT}-cp${PYTHON_VERSION_NO_DOT}-manylinux_2_17_x86_64.manylinux2014_x86_64.whl[dev,docs]" | ||
- name: Cache datasets | ||
id: cache-datasets | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/trajdl | ||
key: trajdl-cache-datasets | ||
|
||
- name: Test with pytest | ||
run: | | ||
pytest -s | ||
- name: Build docs | ||
if: matrix.python-version == '3.12' | ||
run: | | ||
cd docs && make -j 4 html && cd .. | ||
- name: Get branch name | ||
if: matrix.python-version == '3.12' | ||
id: branch-name | ||
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT | ||
|
||
- name: Checkout documentation repository | ||
if: matrix.python-version == '3.12' | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: Spatial-Temporal-Data-Mining/TrajDL-docs | ||
token: ${{ secrets.PAT_FOR_DOCS }} | ||
path: docs-repo | ||
fetch-depth: 0 # 获取所有分支信息 | ||
|
||
- name: Deploy to documentation repository | ||
if: matrix.python-version == '3.12' | ||
run: | | ||
cd docs-repo | ||
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git checkout -b ${{ github.ref_name }} || git checkout ${{ github.ref_name }} | ||
# 复制文档 | ||
rm -rf * # 清空当前分支内容 | ||
cp -r ../docs/build/html/ . | ||
cp ../.readthedocs.yaml . | ||
# 提交更改 | ||
git add . | ||
git commit -m "Update documentation from source repository" || echo "No changes to commit" | ||
git push origin ${{ github.ref_name }} | ||
cd .. | ||
- name: Build SDist | ||
if: matrix.python-version == '3.12' | ||
run: | | ||
python -m build --sdist | ||
- name: Upload artifacts | ||
if: matrix.python-version == '3.12' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist-${{ github.ref_name }}-${{ github.sha }} | ||
path: dist/ | ||
retention-days: 1 | ||
overwrite: true |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.