-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding .NET 9 canary and updating .sln with more github action links (#…
…48)
- Loading branch information
1 parent
3fe3222
commit 82d144f
Showing
22 changed files
with
2,501 additions
and
1 deletion.
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,45 @@ | ||
name: NET 9 Custom Runtime Canary | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Run this once a day to check if everything is still working as expected. | ||
- cron: "30 23 * * *" | ||
|
||
jobs: | ||
|
||
build-deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build and Deploy | ||
uses: ./.github/actions/sam-build-and-deploy-native | ||
with: | ||
aws-access-key: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
dotnet-version: '9.x' | ||
template-file-path: ./src/NET9CustomRuntime/template.yaml | ||
project-directory: ./src/NET9CustomRuntime/ | ||
stack-name: net-9-customRuntime | ||
s3-bucket-name: aws-dotnet-lambda-testing | ||
|
||
load-test-x86: | ||
needs: build-deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run Load Tests | ||
uses: ./.github/actions/run-load-test | ||
with: | ||
api-endpoint: ${{ secrets.API_ENDPOINT_NET_9_CUSTOM_RUNTIME_X86 }} | ||
|
||
load-test-arm: | ||
needs: build-deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run Load Tests | ||
uses: ./.github/actions/run-load-test | ||
with: | ||
api-endpoint: ${{ secrets.API_ENDPOINT_NET_9_CUSTOM_RUNTIME_ARM }} |
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
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
Oops, something went wrong.