Skip to content

Commit

Permalink
update devcontainer and workflow references to 0.11.0-nightly. Update…
Browse files Browse the repository at this point in the history
…d workflows to trigger on -nightly branches
  • Loading branch information
alianides committed Sep 6, 2024
1 parent 50de61f commit 2af902d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-integrationTests-dotnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-integrationTests-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/spacefx-client-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ on:
push:
branches:
- main
- '[0-9]*.[0-9]*.[0-9]*-nightly'

jobs:
build-spacefx-client-amd64:
permissions:
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
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-spacefx-client-dotnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-spacefx-client-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2af902d

Please sign in to comment.