File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -141,17 +141,20 @@ jobs:
141
141
- name : .NET info
142
142
run : dotnet --info
143
143
144
+ - name : Restore
145
+ run : dotnet restore eng/build.proj --configuration ${{ matrix.configuration }} /bl ${{ env.AdditionalArgs }} ${{ matrix.additionalArguments }}
146
+
144
147
- name : Build
145
- env :
148
+ env :
146
149
# Attempt to reduce flakiness on x86 because of limited RAM
147
150
AdditionalArgs : ${{ matrix.architecture == 'x86' && '-maxcpucount:1' || '' }}
148
- run : dotnet build eng/build.proj --configuration ${{ matrix.configuration }} /bl ${{ env.AdditionalArgs }} ${{ matrix.additionalArguments }}
151
+ run : dotnet build eng/build.proj --no-restore -- configuration ${{ matrix.configuration }} /bl ${{ env.AdditionalArgs }} ${{ matrix.additionalArguments }}
149
152
150
153
- name : List environment variables
151
154
run : " Get-ChildItem env: | Sort-Object Name"
152
155
153
156
- name : Run tests
154
- env :
157
+ env :
155
158
# Attempt to reduce flakiness on x86 because of limited RAM
156
159
TestTfmsInParallel : ${{ matrix.architecture == 'x86' && 'false' || 'true' }}
157
160
AdditionalArgs : ${{ matrix.architecture == 'x86' && '-maxcpucount:1' || '' }}
You can’t perform that action at this time.
0 commit comments