Skip to content

Commit

Permalink
Merge branch 'main' into kamboj-prjwl/release-network-Microsoft.Netwo…
Browse files Browse the repository at this point in the history
…rk-2024-05-01
  • Loading branch information
kamboj-prjwl authored Oct 29, 2024
2 parents e6fe3f8 + f0f1de5 commit 07b0710
Show file tree
Hide file tree
Showing 227 changed files with 27,059 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/typespec-validation-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ on:

schedule:
# Run 4x/day
- cron: '0 0,6,12,18 * * * '
- cron: '0 0,6,12,18 * * *'

jobs:
typespec-validation-all:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/typespec-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,5 @@ jobs:
# step as failed.
$ErrorActionPreference = 'Continue'
eng/scripts/TypeSpec-Requirement.ps1 `
-BaseCommitish HEAD^ `
-TargetCommitish HEAD `
-SpecType ${{ matrix.spec-type }}
./eng/scripts/TypeSpec-Validation.ps1 -GitClean -Verbose
shell: pwsh
3 changes: 3 additions & 0 deletions eng/common/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Common Engineering System

Updates under this directory should only be made in the `azure-sdk-tools` repo as any changes under this directory outside of that repo will end up getting overwritten with future updates. For information about making updates see [common engineering system docs](https://github.com/Azure/azure-sdk-tools/blob/main/doc/common/common_engsys.md)
17 changes: 17 additions & 0 deletions eng/common/TestResources/New-TestResources.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@echo off

REM Copyright (c) Microsoft Corporation. All rights reserved.
REM Licensed under the MIT License.

setlocal

for /f "usebackq delims=" %%i in (`where pwsh 2^>nul`) do (
set _cmd=%%i
)

if "%_cmd%"=="" (
echo Error: PowerShell not found. Please visit https://github.com/powershell/powershell for install instructions.
exit /b 2
)

call "%_cmd%" -NoLogo -NoProfile -File "%~dpn0.ps1" %*
Loading

0 comments on commit 07b0710

Please sign in to comment.