This repository has been archived by the owner on Dec 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #39 from GeoFS-Autoland/3.1.0
Update to 3.1.0
- Loading branch information
Showing
82 changed files
with
8,253 additions
and
15,860 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,7 +1,7 @@ | ||
# ignore the massive files | ||
|
||
**/ap++.js | ||
**/fmc.js | ||
**/scripts/ | ||
**/node_modules/ | ||
|
||
# Ignore the generated docs | ||
docs/ |
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,2 @@ | ||
* linguist-vendored | ||
*.ts !linguist-vendored |
Validating CODEOWNERS rules …
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,54 @@ | ||
name: Build documentation | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
job_1: | ||
name: Build docs | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: main | ||
|
||
- name: Setup node v16 | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16.x" | ||
|
||
- name: Build docs | ||
run: | | ||
npm i | ||
npm run docs | ||
- name: Upload docs as artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: docs | ||
path: docs/ | ||
|
||
job_2: | ||
name: Commit docs | ||
runs-on: ubuntu-latest | ||
needs: job_1 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: docs | ||
|
||
- name: Download docs artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: docs | ||
|
||
- name: Commit docs | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Build docs | ||
branch: docs |
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,128 @@ | ||
name: Update Scripts | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
schedule: | ||
- cron: "0 2 * * *" | ||
|
||
jobs: | ||
job_1: | ||
name: Build (AP++) | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: GeoFS-Autoland/autopilot-pp | ||
|
||
- name: Setup node v16 | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16.x" | ||
|
||
- name: Build | ||
run: | | ||
npm i | ||
npm run build | ||
- name: Upload as artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: autopilot_pp | ||
path: dist/autopilot_pp.js | ||
|
||
job_2: | ||
name: Build (FMC) | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: GeoFS-Autoland/fmc-requirejs | ||
|
||
- name: Setup node v16 | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16.x" | ||
|
||
- name: Build | ||
run: | | ||
npm i | ||
npm run build | ||
- name: Upload as artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: fmc | ||
path: dist/fmc.js | ||
|
||
job_3: | ||
name: Build (Spoilers Arming) | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: GeoFS-Autoland/spoilers-arming | ||
|
||
- name: Setup node v16 | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16.x" | ||
|
||
- name: Build | ||
run: | | ||
npm i | ||
npm run build | ||
- name: Upload as artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: spoilers_arming | ||
path: dist/spoilers_arming.js | ||
|
||
job_5: | ||
name: Commit to main repository | ||
needs: [job_1, job_2, job_3, job_4] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup node v16 | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16.x" | ||
|
||
- name: Download AP++ | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: autopilot_pp | ||
path: source/scripts | ||
|
||
- name: Download FMC | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: fmc | ||
path: source/scripts | ||
|
||
- name: Download Spoilers Arming | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: spoilers_arming | ||
path: source/scripts | ||
|
||
- name: Build extension | ||
run: | | ||
npm i | ||
npm run build | ||
- name: Commit | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: "🤖: Update scripts" |
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
node_modules | ||
extension/scripts/ | ||
build/scripts/ | ||
**/scripts/ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.