Skip to content

Commit daf44f4

Browse files
committed
added back global.json file, made the RefSpec internal
1 parent 850aff7 commit daf44f4

File tree

18 files changed

+41
-44
lines changed

18 files changed

+41
-44
lines changed

.github/actions/artifacts-restore/action.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
name: 'Artifacts restore'
22
description: 'Artifacts restore'
3-
inputs:
4-
dotnet-version:
5-
description: 'The version of the dotnet'
6-
default: '7.0.x'
73

84
runs:
95
using: 'composite'
@@ -32,4 +28,4 @@ runs:
3228
name: Setup .NET SDK
3329
uses: actions/setup-dotnet@v3
3430
with:
35-
dotnet-version: ${{ inputs.dotnet-version }}
31+
global-json-file: global.json

.github/workflows/_artifacts_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
name: ${{ matrix.distro }} - net${{ matrix.targetFramework }}
1717
runs-on: ${{ inputs.runner }}
1818
strategy:
19+
fail-fast: false
1920
matrix:
2021
distro: [ alpine.3.16, alpine.3.17, centos.7, centos.stream.8, fedora.36, debian.11, ubuntu.20.04, ubuntu.22.04 ]
2122
targetFramework: [ '7.0', '6.0' ]
22-
fail-fast: false
2323

2424
steps:
2525
-

.github/workflows/_artifacts_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
name: ${{ matrix.package }}
77
runs-on: windows-latest
88
strategy:
9+
fail-fast: false
910
matrix:
1011
package: [ Executable, MsBuildFull ]
11-
fail-fast: false
1212

1313
steps:
1414
-

.github/workflows/_build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ jobs:
55
build:
66
name: ${{ matrix.os }}
77
strategy:
8+
fail-fast: false
89
matrix:
910
os: [windows-latest, ubuntu-latest, macos-latest]
1011

.github/workflows/_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
name: ${{ matrix.distro }} - net${{ matrix.targetFramework }}
1717
runs-on: ${{ inputs.runner }}
1818
strategy:
19+
fail-fast: false
1920
matrix:
2021
distro: [ alpine.3.16, alpine.3.17, centos.7, centos.stream.8, fedora.36, debian.11, ubuntu.20.04, ubuntu.22.04 ]
2122
targetFramework: [ '7.0', '6.0' ]
22-
fail-fast: false
2323

2424
steps:
2525
-

.github/workflows/_docker_manifests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
name: ${{ matrix.distro }} - net${{ matrix.targetFramework }}
1010
runs-on: ubuntu-latest
1111
strategy:
12+
fail-fast: false
1213
matrix:
1314
distro: [ alpine.3.16, alpine.3.17, centos.7, centos.stream.8, fedora.36, debian.11, ubuntu.20.04, ubuntu.22.04 ]
1415
targetFramework: [ '7.0', '6.0' ]
15-
fail-fast: false
1616

1717
steps:
1818
-

.github/workflows/_prepare.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ jobs:
55
prepare:
66
name: ${{ matrix.os }}
77
strategy:
8+
fail-fast: false
89
matrix:
910
os: [windows-latest, ubuntu-latest, macos-latest]
1011

@@ -24,7 +25,7 @@ jobs:
2425
name: Setup .NET SDK
2526
uses: actions/setup-dotnet@v3
2627
with:
27-
dotnet-version: '7.0.x'
28+
global-json-file: global.json
2829
-
2930
name: '[Prepare]'
3031
if: steps.cache-cake.outputs.cache-hit != 'true'

.github/workflows/_publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ jobs:
66
name: ${{ matrix.taskName }}
77
runs-on: windows-latest
88
strategy:
9+
fail-fast: false
910
matrix:
1011
taskName: [ NuGet, Chocolatey ]
11-
fail-fast: false
12+
1213
env:
1314
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1415
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
@@ -31,4 +32,4 @@ jobs:
3132
-
3233
name: '[Publish]'
3334
shell: pwsh
34-
run: dotnet run/publish.dll --target=Publish${{ matrix.taskName }}
35+
run: dotnet run/publish.dll --target=Publish${{ matrix.taskName }}

.github/workflows/_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
env:
88
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
99
strategy:
10+
fail-fast: false
1011
matrix:
1112
os: [windows-latest, ubuntu-latest, macos-latest]
1213
targetFramework: [net7.0, net6.0]
13-
fail-fast: false
1414

1515
runs-on: ${{ matrix.os }}
1616
steps:

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ jobs:
6262
needs: [ build ]
6363
name: Artifacts Linux (${{ matrix.arch }})
6464
strategy:
65+
fail-fast: false
6566
matrix:
6667
arch: [ amd64, arm64 ]
68+
6769
uses: ./.github/workflows/_artifacts_linux.yml
6870
with:
6971
runner: ubuntu-latest
@@ -73,8 +75,10 @@ jobs:
7375
needs: [ build ]
7476
name: Docker Images (${{ matrix.arch }})
7577
strategy:
78+
fail-fast: false
7679
matrix:
7780
arch: [ amd64, arm64 ]
81+
7882
uses: ./.github/workflows/_docker.yml
7983
with:
8084
runner: ubuntu-latest

0 commit comments

Comments
 (0)