generated from NASA-PDS/template-repo-python
-
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
1 parent
654ad48
commit d5988be
Showing
21 changed files
with
434 additions
and
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
my_pds_module/_version.py export-subst | ||
archive-analytics/_version.py export-subst |
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
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,74 @@ | ||
# 🏃♀️ Continuous Integration and Delivery: Stable | ||
# =============================================== | ||
# | ||
# Note: for this workflow to succeed, the following secrets must be installed | ||
# in the repository: | ||
# | ||
# ``ADMIN_GITHUB_TOKEN`` | ||
# A personal access token of a user with collaborator or better access to | ||
# the project repository. You can generate this by visiting GitHub → | ||
# Settings → Developer settings → Personal access tokens → Generate new | ||
# token. Give the token scopes on ``repo``, ``write:packages``, | ||
# ``delete:packages``, ``workflow``, and ``read:gpg_key``. | ||
# ``PYPI_USERNAME`` | ||
# Username for pypi.org. | ||
# ``PYPI_PASSWORD`` | ||
# Password for ``PYPI_USERNAME``. | ||
# | ||
|
||
|
||
--- | ||
|
||
name: 😌 Stable integration & delivery | ||
|
||
|
||
# Driving Event | ||
# ------------- | ||
# | ||
# What event starts this workflow: a push of a release tag. Note: according to | ||
# https://git.io/JJZQt we have been doing our tag matching wrong. It's not | ||
# regexp, it's not glob…it's more like…glob++ 😮 | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'release/*' | ||
|
||
|
||
# What to Do | ||
# ---------- | ||
# | ||
# Round up, yee-haw! | ||
|
||
jobs: | ||
stable-assembly: | ||
name: 🐴 Stable Assembly | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: 💳 Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
lfs: true | ||
token: ${{secrets.ADMIN_GITHUB_TOKEN}} | ||
fetch-depth: 0 | ||
- | ||
name: 💵 Python Cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pip | ||
# The "key" used to indicate a set of cached files is the operating system runner | ||
# plus "py" for Python-specific builds, plus a hash of the wheels, plus "pds" because | ||
# we pds-prefix everything with "pds" in PDS! 😅 | ||
key: pds-${{runner.os}}-py-${{hashFiles('**/*.whl')}} | ||
# To restore a set of files, we only need to match a prefix of the saved key. | ||
restore-keys: pds-${{runner.os}}-py- | ||
- | ||
name: 🤠 Roundup | ||
uses: NASA-PDS/roundup-action@main | ||
with: | ||
assembly: stable | ||
env: | ||
pypi_username: ${{secrets.PYPI_USERNAME}} | ||
pypi_password: ${{secrets.PYPI_PASSWORD}} | ||
ADMIN_GITHUB_TOKEN: ${{secrets.ADMIN_GITHUB_TOKEN}} |
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,81 @@ | ||
# 🏃♀️ Continuous Integration and Delivery: Unstable | ||
# ================================================= | ||
# | ||
# Note: for this workflow to succeed, the following secrets must be installed | ||
# in the repository (or inherited from the repository's organization): | ||
# | ||
# ``ADMIN_GITHUB_TOKEN`` | ||
# A personal access token of a user with collaborator or better access to | ||
# the project repository. You can generate this by visiting GitHub → | ||
# Settings → Developer settings → Personal access tokens → Generate new | ||
# token. Give the token scopes on ``repo``, ``write:packages``, | ||
# ``delete:packages``, ``workflow``, and ``read:gpg_key``. | ||
# ``TEST_PYPI_USERNAME`` | ||
# Username for test.pypi.org. | ||
# ``TEST_PYPI_PASSWORD`` | ||
# Password for ``TEST_PYPI_USERNAME``. | ||
# | ||
|
||
|
||
--- | ||
|
||
name: 🤪 Unstable integration & delivery | ||
|
||
|
||
# Driving Event | ||
# ------------- | ||
# | ||
# What event starts this workflow: a push to ``main`` (or ``master`` in old | ||
# parlance). For the "glob++" pattern syntax, see https://git.io/JJZQt | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'CHANGELOG.md' | ||
- 'docs/requirements/**' | ||
|
||
|
||
# What to Do | ||
# ---------- | ||
# | ||
# Round up, yee-haw! | ||
|
||
jobs: | ||
unstable-assembly: | ||
name: 🧩 Unstable Assembly | ||
if: github.actor != 'pdsen-ci' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: 💳 Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
lfs: true | ||
token: ${{secrets.ADMIN_GITHUB_TOKEN}} | ||
fetch-depth: 0 | ||
- | ||
name: 💵 Python Cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pip | ||
# The "key" used to indicate a set of cached files is the operating system runner | ||
# plus "py" for Python-specific builds, plus a hash of the wheels, plus "pds" because | ||
# we pds-prefix everything with "pds" in PDS! 😅 | ||
key: pds-${{runner.os}}-py-${{hashFiles('**/*.whl')}} | ||
# To restore a set of files, we only need to match a prefix of the saved key. | ||
restore-keys: pds-${{runner.os}}-py- | ||
- | ||
name: 🤠 Roundup | ||
uses: NASA-PDS/roundup-action@main | ||
with: | ||
assembly: unstable | ||
env: | ||
pypi_username: ${{secrets.TEST_PYPI_USERNAME}} | ||
pypi_password: ${{secrets.TEST_PYPI_PASSWORD}} | ||
ADMIN_GITHUB_TOKEN: ${{secrets.ADMIN_GITHUB_TOKEN}} | ||
|
||
... | ||
|
||
# -*- mode: yaml; indent: 4; fill-column: 120; coding: utf-8 -*- |
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,44 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.0.1 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-executables-have-shebangs | ||
- id: check-merge-conflict | ||
- id: debug-statements | ||
- id: check-yaml | ||
files: .*\.(yaml|yml)$ | ||
|
||
- repo: https://github.com/asottile/reorder_python_imports | ||
rev: v2.6.0 | ||
hooks: | ||
- id: reorder-python-imports | ||
files: ^src/|tests/ | ||
|
||
- repo: https://github.com/pre-commit/mirrors-mypy.git | ||
rev: v0.910 | ||
hooks: | ||
- id: mypy | ||
files: ^src/|tests/ | ||
|
||
- repo: https://github.com/python/black | ||
rev: 21.7b0 | ||
hooks: | ||
- id: black | ||
files: ^src/|tests/ | ||
|
||
- repo: https://gitlab.com/pycqa/flake8 | ||
rev: 3.9.2 | ||
hooks: | ||
- id: flake8 | ||
files: ^src/|tests/ | ||
|
||
- repo: local | ||
hooks: | ||
- id: tests | ||
name: Tests | ||
entry: pytest | ||
language: system | ||
stages: [push] | ||
pass_filenames: false |
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 |
---|---|---|
@@ -1,10 +1,13 @@ | ||
graft src | ||
graft data | ||
include versioneer.py | ||
include my_pds_module/_version.py | ||
include src/pds/archive_analytics/_version.py | ||
global-exclude *.py[cod] | ||
|
||
# Include package-level files and directories here; e.g.: | ||
# | ||
# include *.png *.jpeg | ||
# exclude *.webp | ||
# graft spice-kernels | ||
# prune my_pds_module/obsolete-dir | ||
# global-exclude *.py[cod] | ||
# prune src/pds/archive_analytics/obsolete-dir | ||
# global-exclude *.log *.so |
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
Oops, something went wrong.