-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #241 from ProjectTorreyPines/daily_manifest
daily_manifest GH action
- Loading branch information
Showing
4 changed files
with
73 additions
and
3 deletions.
There are no files selected for viewing
9 changes: 7 additions & 2 deletions
9
.github/workflows/documentation.yml → .github/workflows/daily_documentation.yml
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,61 @@ | ||
name: daily_manifest | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: | ||
inputs: | ||
debug: | ||
type: boolean | ||
required: false | ||
default: false | ||
|
||
env: | ||
PTP_READ_TOKEN: ${{ secrets.PTP_READ_TOKEN }} | ||
|
||
|
||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- "1.x" | ||
os: | ||
- ubuntu-latest | ||
arch: | ||
- x64 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
#============ | ||
- name: Check if fuse bot commit | ||
run: | | ||
author=$(git log -1 --pretty=format:'%an') | ||
if [ "$author" = "fuse bot" ]; then | ||
echo "Skipping action due to commit made by 'fuse bot'." | ||
exit 78 | ||
fi | ||
#============ | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
show-versioninfo: true | ||
- uses: julia-actions/cache@v1 | ||
- run: make install_ci | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
#============ | ||
- uses: julia-actions/julia-runtest@v1 | ||
- run: make manifest_ci_commit | ||
#============ | ||
- name: Debug with tmate if failure + manual triggrer + debug mode | ||
if: ${{ failure() && github.event_name == 'workflow_dispatch' && inputs.debug }} | ||
uses: mxschmitt/action-tmate@v3 | ||
timeout-minutes: 60 |
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 |
---|---|---|
|
@@ -32,7 +32,6 @@ jobs: | |
- ubuntu-latest | ||
arch: | ||
- x64 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
#============ | ||
|