Skip to content

Commit befadc1

Browse files
author
alianides
committed
dotnet integrationTest workflow and updated naming for build workflow
1 parent 96b0a00 commit befadc1

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

.github/workflows/run-integrationTests-dotnet.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: test-template-sdk-dotnet
1+
name: test-template-spacefx-client-dotnet
22
on:
33
workflow_call:
44
inputs:

.github/workflows/sdk-dotnet-build.yaml .github/workflows/spacefx-client-dotnet-build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
contents: read
1111
packages: write
1212

13-
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/service-build.yml@main
13+
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/python-app-build.yml@main
1414
with:
1515
APP_PROJECT: ./src/spacesdk-client.csproj
1616
NUGET_PROJECT: ./src/spacesdk-client.csproj
@@ -30,7 +30,7 @@ jobs:
3030
contents: read
3131
packages: write
3232

33-
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/service-build.yml@main
33+
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/python-app-build.yml@main
3434
with:
3535
APP_PROJECT: ./src/spacesdk-client.csproj
3636
NUGET_PROJECT: ./src/spacesdk-client.csproj
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: test-spacefx-client
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
test-spacefx-client-amd64:
9+
permissions:
10+
contents: read
11+
issues: read
12+
checks: write
13+
pull-requests: write
14+
15+
uses: ./.github/workflows/run-integrationTests-dotnet.yaml
16+
with:
17+
WORKFLOW_AGENT: ubuntu-latest
18+
secrets:
19+
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }}
20+
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }}
21+
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }}
22+
23+
test-spacefx-client-arm64:
24+
permissions:
25+
contents: read
26+
issues: read
27+
checks: write
28+
pull-requests: write
29+
30+
uses: ./.github/workflows/run-integrationTests-dotnet.yaml
31+
with:
32+
WORKFLOW_AGENT: spacesdk-ubuntu-2204LTS-arm64
33+
secrets:
34+
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }}
35+
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }}
36+
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }}

0 commit comments

Comments
 (0)