-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish GitHub Pages upon successfully-merged PR
- Loading branch information
1 parent
1e42d08
commit 6cf2927
Showing
4 changed files
with
62 additions
and
0 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,3 @@ | ||
# GitHub Pages tools | ||
|
||
This folder contains tools to publish content to [this repository's GitHub Pages site](https://interuss.github.io/monitoring/). Publishing is performed by [the CI](../.github/workflows/ci.yml) at appropriate times, generally when a PR is merged to the main branch. Current site content is pushed to the gh-pages branch of this repository upon publishing, and then that content is deployed to the site by GitHub. |
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,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
# This script generates the content for this repository's GitHub Pages site. It is invoked by the CI and expects the | ||
# working folder to contain: | ||
# ./monitoring: this repository | ||
# ./artifacts/uss_qualifier/reports: Reports generated by from running uss_qualifier | ||
# | ||
# The content placed into ./public by this script will be published to the GitHub Pages site. | ||
|
||
mkdir ./public | ||
cp -r ./monitoring/github_pages/static/* ./public | ||
|
||
mkdir -p ./public/artifacts/uss_qualifier/reports | ||
cp -r ./artifacts/uss_qualifier/reports/sequence_uspace ./public/artifacts/uss_qualifier/reports/sequence_uspace | ||
cp -r ./artifacts/uss_qualifier/reports/tested_requirements_uspace ./public/artifacts/uss_qualifier/reports/tested_requirements_uspace | ||
cp -r ./artifacts/uss_qualifier/reports/capabilities_uspace.html ./public/artifacts/uss_qualifier/reports/capabilities_uspace.html |
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,13 @@ | ||
# InterUSS [`monitoring`](https://github.com/interuss/monitoring) generated content | ||
|
||
This site contains content automatically generated by actions in the [InterUSS](https://interussplatform.org) [monitoring repository](https://github.com/interuss/monitoring). | ||
|
||
## uss_qualifier [reports](https://github.com/interuss/monitoring/tree/main/monitoring/uss_qualifier/reports) | ||
|
||
These reports were generated during continuous integration for the most recent PR merged to the main branch. | ||
|
||
### [U-space developer](https://github.com/interuss/monitoring/blob/main/monitoring/uss_qualifier/configurations/dev/uspace.yaml) [test configuration](https://github.com/interuss/monitoring/tree/main/monitoring/uss_qualifier/configurations) | ||
|
||
* [Sequence view](./artifacts/uss_qualifier/reports/sequence_uspace) | ||
* [Tested requirements](./artifacts/uss_qualifier/tested_requirements_uspace) | ||
* [Demonstrated capabilities](./artifacts/uss_qualifier/capabilities_uspace.html) |