From 2af902d6cce2df21fd9036c40f6baf3e40e75cdf Mon Sep 17 00:00:00 2001 From: alianides Date: Fri, 6 Sep 2024 23:13:46 +0000 Subject: [PATCH] update devcontainer and workflow references to 0.11.0-nightly. Updated workflows to trigger on -nightly branches --- .devcontainer/devcontainer.json | 2 +- .github/workflows/run-integrationTests-dotnet.yaml | 4 ++-- .github/workflows/run-integrationTests-python.yaml | 2 +- .github/workflows/spacefx-client-build.yaml | 5 +++-- .github/workflows/test-spacefx-client-dotnet.yaml | 4 +++- .github/workflows/test-spacefx-client-python.yaml | 4 +++- 6 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8c33c92..2359e69 100755 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,7 +9,7 @@ "workspaceFolder": "/workspace/spacesdk-client", "workspaceMount": "source=${localWorkspaceFolder},target=/workspace/spacesdk-client,type=bind,consistency=cached", "features": { - "ghcr.io/microsoft/azure-orbital-space-sdk/spacefx-dev:0.11.0": { + "ghcr.io/microsoft/azure-orbital-space-sdk/spacefx-dev:0.11.0-nightly": { "app_name": "spacesdk-client", "app_type": "spacesdk-client", "dev_language": "python" diff --git a/.github/workflows/run-integrationTests-dotnet.yaml b/.github/workflows/run-integrationTests-dotnet.yaml index f5b586a..dfa4649 100644 --- a/.github/workflows/run-integrationTests-dotnet.yaml +++ b/.github/workflows/run-integrationTests-dotnet.yaml @@ -30,13 +30,13 @@ jobs: pull-requests: write steps: - - uses: microsoft/azure-orbital-space-sdk-github-actions/composite-actions/initialize@main + - uses: microsoft/azure-orbital-space-sdk-github-actions/composite-actions/initialize@0.11.0-nightly with: 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 }} - - uses: microsoft/azure-orbital-space-sdk-github-actions/composite-actions/install-publish-dependencies@main + - uses: microsoft/azure-orbital-space-sdk-github-actions/composite-actions/install-publish-dependencies@0.11.0-nightly if: inputs.WORKFLOW_AGENT == 'spacesdk-ubuntu-2204LTS-arm64' ## Build the Service's Devcontainer and wait for pods to spin up (unnecessary when devcontainer up composite action is available) diff --git a/.github/workflows/run-integrationTests-python.yaml b/.github/workflows/run-integrationTests-python.yaml index e1c22b2..5399c94 100644 --- a/.github/workflows/run-integrationTests-python.yaml +++ b/.github/workflows/run-integrationTests-python.yaml @@ -30,7 +30,7 @@ jobs: pull-requests: write steps: - - uses: microsoft/azure-orbital-space-sdk-github-actions/composite-actions/initialize@main + - uses: microsoft/azure-orbital-space-sdk-github-actions/composite-actions/initialize@0.11.0-nightly with: GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }} GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }} diff --git a/.github/workflows/spacefx-client-build.yaml b/.github/workflows/spacefx-client-build.yaml index 24a4abf..445e600 100644 --- a/.github/workflows/spacefx-client-build.yaml +++ b/.github/workflows/spacefx-client-build.yaml @@ -5,6 +5,7 @@ on: push: branches: - main + - '[0-9]*.[0-9]*.[0-9]*-nightly' jobs: build-spacefx-client-amd64: @@ -12,7 +13,7 @@ jobs: contents: read packages: write - uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/client-build.yaml@main + uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/client-build.yaml@0.11.0-nightly with: DOTNET_APP_PROJECT: ./src/spacesdk-client.csproj DOTNET_NUGET_PROJECT: ./src/spacesdk-client.csproj @@ -37,7 +38,7 @@ jobs: contents: read packages: write - uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/client-build.yaml@main + uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/client-build.yaml@0.11.0-nightly with: DOTNET_APP_PROJECT: ./src/spacesdk-client.csproj DOTNET_NUGET_PROJECT: ./src/spacesdk-client.csproj diff --git a/.github/workflows/test-spacefx-client-dotnet.yaml b/.github/workflows/test-spacefx-client-dotnet.yaml index be5369b..74e4bec 100644 --- a/.github/workflows/test-spacefx-client-dotnet.yaml +++ b/.github/workflows/test-spacefx-client-dotnet.yaml @@ -2,7 +2,9 @@ name: test-spacefx-client-dotnet on: workflow_dispatch: pull_request: - branches: [ main ] + branches: + - main + - '[0-9]*.[0-9]*.[0-9]*-nightly' jobs: test-spacefx-client-dotnet-amd64: diff --git a/.github/workflows/test-spacefx-client-python.yaml b/.github/workflows/test-spacefx-client-python.yaml index 8ba6eb9..ac37f05 100644 --- a/.github/workflows/test-spacefx-client-python.yaml +++ b/.github/workflows/test-spacefx-client-python.yaml @@ -2,7 +2,9 @@ name: test-spacefx-client-python on: workflow_dispatch: pull_request: - branches: [ main ] + branches: + - main + - '[0-9]*.[0-9]*.[0-9]*-nightly' jobs: test-spacefx-client-python-amd64: