From e3136995346b814b91d8006d6ae7083627832275 Mon Sep 17 00:00:00 2001 From: alianides Date: Thu, 1 Aug 2024 18:40:03 +0000 Subject: [PATCH] test-workflow --- .../geospatial-images-plugin-test.yaml | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/geospatial-images-plugin-test.yaml diff --git a/.github/workflows/geospatial-images-plugin-test.yaml b/.github/workflows/geospatial-images-plugin-test.yaml new file mode 100644 index 0000000..453959c --- /dev/null +++ b/.github/workflows/geospatial-images-plugin-test.yaml @@ -0,0 +1,50 @@ +name: test-geospatial-images-plugin + +on: + workflow_dispatch: + pull_request: + branches: [ main ] + paths: + - 'datagenerators/geospatial-images/plugin/**' + - '.github/workflows/geospatial-images-plugin-test.yaml' + + +jobs: + test-geospatial-images-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: geospatial-images-vth-plugin + WORKFLOW_AGENT: ubuntu-latest + DEVCONTAINER_JSON: ./.devcontainer/geospatial-images-vth-plugin/devcontainer.json + REPO_DIR: ./datagenerators/geospatial-images/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-geospatial-images-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: geospatial-images-vth-plugin + WORKFLOW_AGENT: spacesdk-ubuntu-2204LTS-arm64 + DEVCONTAINER_JSON: ./.devcontainer/geospatial-images-vth-plugin/devcontainer.json + REPO_DIR: ./datagenerators/geospatial-images/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 }} \ No newline at end of file