Skip to content

Commit 74ccfe1

Browse files
committed
gh workflows, conda-recipe, devutils
1 parent 4a8000a commit 74ccfe1

File tree

11 files changed

+63
-191
lines changed

11 files changed

+63
-191
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release (GitHub/PyPI) and Deploy Docs
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
tags:
7+
- '*' # Trigger on all tags initially, but tag and release privilege are verified in _build-wheel-release-upload.yml
8+
9+
jobs:
10+
release:
11+
uses: Billingegroup/release-scripts/.github/workflows/_build-wheel-release-upload.yml@v0
12+
with:
13+
project: diffpy.srreal
14+
c_extension: true
15+
github_admin_username: sbillinge
16+
secrets:
17+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
18+
PAT_TOKEN: ${{ secrets.PAT_TOKEN }}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Check for News
2+
3+
on:
4+
pull_request_target:
5+
branches:
6+
- main
7+
8+
jobs:
9+
check-news-item:
10+
uses: Billingegroup/release-scripts/.github/workflows/_check-news-item.yml@v0
11+
with:
12+
project: diffpy.srreal
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
release:
8+
types:
9+
- prereleased
10+
- published
11+
workflow_dispatch:
12+
13+
jobs:
14+
matrix-coverage:
15+
uses: Billingegroup/release-scripts/.github/workflows/_matrix-and-codecov-on-merge-to-main.yml@v0
16+
with:
17+
project: diffpy.srreal
18+
c_extension: true
19+
headless: false
20+
secrets:
21+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Deploy Documentation on Release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
docs:
8+
uses: Billingegroup/release-scripts/.github/workflows/_publish-docs-on-release.yml@v0
9+
with:
10+
project: diffpy.srreal
11+
c_extension: true
12+
headless: false

conda-recipe/build.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

conda-recipe/conda_build_config.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

conda-recipe/meta.yaml

Lines changed: 0 additions & 83 deletions
This file was deleted.

conda-recipe/run_test.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

conda-recipe/sconscript.local

Lines changed: 0 additions & 18 deletions
This file was deleted.

devutils/makesdist

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)