@@ -28,39 +28,38 @@ jobs:
2828 docker_distro : ${{ fromJson(inputs.docker_distros) }}
2929 dotnet_version : ${{ fromJson(inputs.dotnet_versions) }}
3030 steps :
31- -
32- name : Checkout
33- uses : actions/checkout@v6
34- with :
35- fetch-depth : 0
36- -
37- name : Restore State
38- uses : ./.github/actions/cache-restore
39- -
40- uses : actions/download-artifact@v8
41- name : Download nuget packages
42- with :
43- name : nuget
44- path : ${{ github.workspace }}/artifacts/packages/nuget
45- -
46- uses : actions/download-artifact@v8
47- name : Download native packages
48- with :
49- name : native-Linux
50- path : ${{ github.workspace }}/artifacts/packages/native
51- -
52- name : Set up Docker
53- uses : ./.github/actions/docker-setup
54- -
55- name : ' [Test Artifacts]'
56- uses : nick-fields/retry@v3
57- with :
58- shell : pwsh
59- timeout_minutes : 30
60- max_attempts : 3
61- retry_on : error
62- command : |
63- dotnet run/artifacts.dll `
64- --target=ArtifactsTest --arch=${{ inputs.arch }} `
65- --dotnet_version=${{ matrix.dotnet_version }} `
66- --docker_distro=${{ matrix.docker_distro }}
31+ - name : Checkout
32+ uses : actions/checkout@v6
33+ with :
34+ fetch-depth : 0
35+
36+ - name : Restore State
37+ uses : ./.github/actions/cache-restore
38+
39+ - uses : actions/download-artifact@v8
40+ name : Download nuget packages
41+ with :
42+ name : nuget
43+ path : ${{ github.workspace }}/artifacts/packages/nuget
44+
45+ - uses : actions/download-artifact@v8
46+ name : Download native packages
47+ with :
48+ name : native-Linux
49+ path : ${{ github.workspace }}/artifacts/packages/native
50+
51+ - name : Set up Docker
52+ uses : ./.github/actions/docker-setup
53+
54+ - name : ' [Test Artifacts]'
55+ uses : nick-fields/retry@v3
56+ with :
57+ shell : pwsh
58+ timeout_minutes : 30
59+ max_attempts : 3
60+ retry_on : error
61+ command : |
62+ dotnet run/artifacts.dll `
63+ --target=ArtifactsTest --arch=${{ inputs.arch }} `
64+ --dotnet_version=${{ matrix.dotnet_version }} `
65+ --docker_distro=${{ matrix.docker_distro }}
0 commit comments