-
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.
Test Workflow for Planetary Computer Plugin (#16)
* planetary computer test workflow * changed to push trigger * switch branch ref * updated pathing * updated test * included new arguements * eliminate REPO_DIR * add back REPO_DIR * remove push trigger and fix names * switch to main branch * typo fix * reset geospatial secrets to use original credentials --------- Co-authored-by: alianides <[email protected]>
- Loading branch information
1 parent
e1d747b
commit e65d912
Showing
3 changed files
with
58 additions
and
8 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
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,50 @@ | ||
name: test-planetary-computer-plugin | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: [ main ] | ||
paths: | ||
- 'datagenerators/planetary-computer/plugin/**' | ||
- '.github/workflows/planetary-computer-plugin-test.yaml' | ||
|
||
|
||
jobs: | ||
test-planetary-computer-plugin-amd64: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
|
||
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/test-plugin.yaml@main | ||
with: | ||
APP_NAME: vth | ||
PLUGIN_NAME: planetary-computer-vth-plugin | ||
WORKFLOW_AGENT: ubuntu-latest | ||
DEVCONTAINER_JSON: ./.devcontainer/planetary-computer-vth-plugin/devcontainer.json | ||
REPO_DIR: ./datagenerators/planetary-computer/plugin | ||
secrets: | ||
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }} | ||
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }} | ||
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }} | ||
|
||
|
||
test-planetary-computer-plugin-arm64: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
|
||
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/test-plugin.yaml@main | ||
with: | ||
APP_NAME: vth | ||
PLUGIN_NAME: planetary-computer-vth-plugin | ||
WORKFLOW_AGENT: spacesdk-ubuntu-2204LTS-arm64 | ||
DEVCONTAINER_JSON: ./.devcontainer/planetary-computer-vth-plugin/devcontainer.json | ||
REPO_DIR: ./datagenerators/planetary-computer/plugin | ||
secrets: | ||
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }} | ||
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }} | ||
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }} |