Skip to content

Commit

Permalink
update the ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vicancy authored Sep 6, 2024
1 parent 30ecdb7 commit 1552df3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
dotnet-version: [ '8.0.x', '7.0.x', '6.0.x' ]
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
Expand Down Expand Up @@ -41,6 +41,8 @@ jobs:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Display dotnet version
run: dotnet --version
- name: Install aspire workload
run: dotnet workload install aspire
- name: Build with dotnet
run: |
if [ "${{ matrix.dotnet-version }}" != "6.0.x" ]; then
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.0.x', '7.0.x', '6.0.x' ]
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
Expand Down Expand Up @@ -41,6 +41,8 @@ jobs:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Display dotnet version
run: dotnet --version
- name: Install aspire workload
run: dotnet workload install aspire
- name: Build with dotnet
run: "dotnet build AzureSignalR.sln /p:DisableNet461Tests=true"
if: steps.filter.outputs.src == 'true'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: [windows-latest]
strategy:
matrix:
dotnet-version: [ '8.0.x', '7.0.x', '6.0.x' ]
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
Expand Down Expand Up @@ -41,6 +41,8 @@ jobs:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Display dotnet version
run: dotnet --version
- name: Install aspire workload
run: dotnet workload install aspire
- name: Build with dotnet
run: "dotnet build AzureSignalR.sln"
if: steps.filter.outputs.src == 'true'
Expand Down

0 comments on commit 1552df3

Please sign in to comment.