-
Notifications
You must be signed in to change notification settings - Fork 3
53 lines (48 loc) · 2.11 KB
/
planetary-computer-plugin-build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: planetary-computer-plugin-build
on:
workflow_dispatch:
push:
branches:
- km/add_action
paths:
- 'datagenerators/planetary-computer/plugin/**'
- '.github/workflows/planetary-computer-plugin-build.yaml'
jobs:
build-plugin-planetary-computer-amd64:
permissions:
contents: read
packages: write
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/plugin-build.yaml@main
with:
APP_PROJECT: ./src/planetary-computer-vth-plugin.csproj
OUTPUT_DIR: /var/spacedev/tmp/planetary-computer-vth-plugin/output
PLUGIN_STAGING_DIRECTORY: /var/spacedev/plugins/vth
PLUGIN_FILE_NAME: planetary-computer-vth-plugin.dll
PLUGIN_CONFIG_FILE_NAME: planetary-computer-vth-plugin.json.spacefx_plugin
ANNOTATION: azure-orbital-space-sdk-data-generators.yaml
WORKFLOW_AGENT: ubuntu-latest
ARCHITECTURE: amd64
DEV_CONTAINER_JSON: .devcontainer/planetary-computer-vth-plugin/devcontainer.json
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 }}
build-plugin-planetary-computer-arm64:
permissions:
contents: read
packages: write
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/plugin-build.yaml@main
with:
APP_PROJECT: ./src/planetary-computer-vth-plugin.csproj
OUTPUT_DIR: /var/spacedev/tmp/planetary-computer-vth-plugin/output
PLUGIN_STAGING_DIRECTORY: /var/spacedev/plugins/vth
PLUGIN_FILE_NAME: planetary-computer-vth-plugin.dll
PLUGIN_CONFIG_FILE_NAME: planetary-computer-vth-plugin.json.spacefx_plugin
ANNOTATION: azure-orbital-space-sdk-data-generators.yaml
WORKFLOW_AGENT: spacesdk-ubuntu-2204LTS-arm64
ARCHITECTURE: arm64
DEV_CONTAINER_JSON: .devcontainer/planetary-computer-vth-plugin/devcontainer.json
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 }}