forked from SciTools/iris
-
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.
Merge branch 'main' into votable_issues
* main: (94 commits) added support for make html-noapi and html-quick for the docs build (SciTools#4333) Refactor some netcdf save code (SciTools#4301) [pre-commit.ci] pre-commit autoupdate (SciTools#4329) Update to loading docs to cover absence of 'or' for constraints (SciTools#4321) update latest.rst.template (SciTools#4323) stable cartopy feature download (SciTools#4328) Skip TestConstrainedLoad if data missing (SciTools#4319) Add 'Good First Issue' label to reasons an issue doesn't go stale (SciTools#4317) Gallery: simplify quiver example (SciTools#4120) Improve styling in a minor way in docs (SciTools#4314) bump version (SciTools#4310) Made clear we only test on Linux. (SciTools#4309) Updated environment lockfiles (SciTools#4308) Include Discussions in Getting Involved. (SciTools#4307) Fixed text to show as link. (SciTools#4305) [pre-commit.ci] pre-commit autoupdate (SciTools#4299) Updated environment lockfiles (SciTools#4298) cartopy feature download (SciTools#4304) Mesh Loading (AVD-1813) (SciTools#4262) reset whatsnew latest (SciTools#4288) ...
- Loading branch information
Showing
218 changed files
with
25,755 additions
and
8,342 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,48 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: benchmark-check | ||
|
||
on: | ||
# Triggers the workflow on push or pull request events but only for the master branch | ||
pull_request: | ||
|
||
jobs: | ||
benchmark: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Checkout the branches | ||
run: | | ||
git fetch --depth=1 origin ${{ github.event.pull_request.base.ref }} | ||
git branch _base FETCH_HEAD | ||
git fetch --depth=1 origin ${{ github.ref }} | ||
git branch _head FETCH_HEAD | ||
- name: Setup asv | ||
run: | | ||
pip install asv | ||
cd benchmarks | ||
asv machine --yes | ||
- name: Run benchmarks on source and target | ||
run: | | ||
cd benchmarks | ||
asv continuous --factor 1.2 _base _head | ||
- name: Write a compare file to the output folder | ||
if: ${{ always() }} | ||
run: | | ||
cd benchmarks | ||
asv compare -s _base _head > .asv/compare.txt | ||
- name: Archive asv results | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: asv-report | ||
path: | | ||
benchmarks/.asv/results | ||
benchmarks/.asv/compare.txt |
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,78 @@ | ||
# See https://github.com/actions/stale | ||
|
||
name: Stale issues and pull-requests | ||
on: | ||
schedule: | ||
- cron: 0 0 * * * | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v4.0.0 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Idle number of days before marking issues/prs stale. | ||
days-before-stale: 500 | ||
|
||
# Idle number of days before closing stale issues/prs. | ||
days-before-close: 28 | ||
|
||
# Comment on the staled issues. | ||
stale-issue-message: | | ||
In order to maintain a backlog of relevant issues, we automatically label them as stale after 500 days of inactivity. | ||
If this issue is still important to you, then please comment on this issue and the stale label will be removed. | ||
Otherwise this issue will be automatically closed in 28 days time. | ||
# Comment on the staled prs. | ||
stale-pr-message: | | ||
In order to maintain a backlog of relevant PRs, we automatically label them as stale after 500 days of inactivity. | ||
If this PR is still important to you, then please comment on this PR and the stale label will be removed. | ||
Otherwise this PR will be automatically closed in 28 days time. | ||
# Comment on the staled issues while closed. | ||
close-issue-message: | | ||
This stale issue has been automatically closed due to a lack of community activity. | ||
If you still care about this issue, then please either: | ||
* Re-open this issue, if you have sufficient permissions, or | ||
* Add a comment pinging `@SciTools/iris-devs` who will re-open on your behalf. | ||
# Comment on the staled prs while closed. | ||
close-pr-message: | | ||
This stale PR has been automatically closed due to a lack of community activity. | ||
If you still care about this PR, then please either: | ||
* Re-open this PR, if you have sufficient permissions, or | ||
* Add a comment pinging `@SciTools/iris-devs` who will re-open on your behalf. | ||
# Label to apply on staled issues. | ||
stale-issue-label: Stale | ||
|
||
# Label to apply on staled prs. | ||
stale-pr-label: Stale | ||
|
||
# Labels on issues exempted from stale. | ||
exempt-issue-labels: | | ||
"Status: Blocked,Status: Decision Required,Peloton 🚴♂️,Good First Issue" | ||
# Labels on prs exempted from stale. | ||
exempt-pr-labels: | | ||
"Status: Blocked,Status: Decision Required,Peloton 🚴♂️,Good First Issue" | ||
# Max number of operations per run. | ||
operations-per-run: 300 | ||
|
||
# Remove stale label from issues/prs on updates/comments. | ||
remove-stale-when-updated: true | ||
|
||
# Order to get issues/PRs. | ||
ascending: true | ||
|
||
# Exempt all issues/prs with milestones from stale. | ||
exempt-all-milestones: 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
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.