-
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.
Aggregating dotnet and python build (#12)
* Temporary remove arm64 * Updating for new parameters * Running for branch * Updating for spacesdk-client workspace * Adding new workflow * Fixing workflow * Fixing parameters * Adding arm64 * Testing arm64 build * Removing old workflows * Fixing readme with badge * Flip to main --------- Co-authored-by: Kevin Mack <[email protected]>
- Loading branch information
1 parent
1c0dace
commit 9e0806d
Showing
4 changed files
with
59 additions
and
79 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: spacefx-client-build | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-spacefx-client-amd64: | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/client-build.yaml@main | ||
with: | ||
DOTNET_APP_PROJECT: ./src/spacesdk-client.csproj | ||
DOTNET_NUGET_PROJECT: ./src/spacesdk-client.csproj | ||
DOTNET_OUTPUT_DIR: /var/spacedev/tmp/spacesdk-client | ||
DOTNET_NUGET_STAGING_DIRECTORY: /var/spacedev/nuget/spacesdk-client | ||
DOTNET_NUGET_FILE_PREFIX: Microsoft.Azure.SpaceSDK.Client | ||
PYTHON_APP_PROJECT: spacefx | ||
PYTHON_OUTPUT_DIR: /var/spacedev/tmp/spacesdk-client | ||
PYTHON_WHEEL_STAGING_DIRECTORY: /var/spacedev/wheel/microsoftazurespacefx | ||
PYTHON_WHEEL_FILE_PREFIX: microsoftazurespacefx | ||
BUILD_PYTHON_WHEEL: true | ||
ANNOTATION: azure-orbital-space-sdk-client.yaml | ||
WORKFLOW_AGENT: ubuntu-latest | ||
ARCHITECTURE: amd64 | ||
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-spacefx-client-dotnet-arm64: | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/client-build.yaml@main | ||
with: | ||
DOTNET_APP_PROJECT: ./src/spacesdk-client.csproj | ||
DOTNET_NUGET_PROJECT: ./src/spacesdk-client.csproj | ||
DOTNET_OUTPUT_DIR: /var/spacedev/tmp/spacesdk-client | ||
DOTNET_NUGET_STAGING_DIRECTORY: /var/spacedev/nuget/spacesdk-client | ||
DOTNET_NUGET_FILE_PREFIX: Microsoft.Azure.SpaceSDK.Client | ||
PYTHON_APP_PROJECT: spacefx | ||
PYTHON_OUTPUT_DIR: /var/spacedev/tmp/spacesdk-client | ||
PYTHON_WHEEL_STAGING_DIRECTORY: /var/spacedev/wheel/microsoftazurespacefx | ||
PYTHON_WHEEL_FILE_PREFIX: microsoftazurespacefx | ||
BUILD_PYTHON_WHEEL: true | ||
ANNOTATION: azure-orbital-space-sdk-client.yaml | ||
WORKFLOW_AGENT: spacesdk-ubuntu-2204LTS-arm64 | ||
ARCHITECTURE: arm64 | ||
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 }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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