Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
daxian-dbw committed Aug 28, 2024
1 parent 71fd6c3 commit 488ecd2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ on:

jobs:
build-linux:

runs-on: ubuntu-latest
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
Expand All @@ -27,11 +28,12 @@ jobs:
Start-Build -Verbose
build-windows:

runs-on: windows-latest
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
Expand All @@ -43,11 +45,12 @@ jobs:
Start-Build -Verbose
build-macos:

runs-on: macos-latest
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
Expand Down
3 changes: 2 additions & 1 deletion build.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ function Start-Build
Select-Object -First 1 |
ForEach-Object { $_.Matches.Groups[1].Value })

Write-Verbose "Runtime: $RID `nAgents: $($AgentToInclude -join ",")"
Write-Verbose "Runtime: $RID"
Write-Verbose "Agents: $($AgentToInclude -join ",")"

$shell_dir = Join-Path $PSScriptRoot "shell"
$agent_dir = Join-Path $shell_dir "agents"
Expand Down

0 comments on commit 488ecd2

Please sign in to comment.