This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
Bump Microsoft.Azure.Functions.Worker.Sdk from 1.17.2 to 2.0.0 in /src/testing/userload-generator/AzureFunctions/GlobalOrchestrator #331
Workflow file for this run
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
name: Component CI - LoadGenerator | |
on: | |
pull_request: | |
paths: | |
- "src/testing/userload-generator/AzureFunctions/**" | |
workflow_dispatch: | |
env: | |
DOTNET_VERSION: "6.0" | |
NODEJS_VERSION: "16" | |
defaults: | |
run: | |
working-directory: "src/testing/userload-generator/AzureFunctions" | |
jobs: | |
build-and-test-global: | |
name: Build global orchestrator | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Setup .NET Core ${{ env.DOTNET_VERSION }}" | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: "Build GlobalOrchestrator" | |
run: | | |
cd GlobalOrchestrator | |
dotnet build | |
build-and-test-regional: | |
name: Build regional load generator | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Setup Node.js ${{ env.NODEJS_VERSION }}" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODEJS_VERSION }} | |
- name: "Build RegionalLoadGenerator" | |
run: | | |
cd RegionalLoadGenerator | |
npm install |