|
16 | 16 | SFFS_CLI_PROJECT_PATH: '${{ github.workspace }}\src\Platforms\SecureFolderFS.Cli\SecureFolderFS.Cli.csproj' |
17 | 17 | DOTNET_TFM: 'net10.0' |
18 | 18 | DOTNET_SDK: '10.0.102' |
| 19 | + NUGET_PACKAGES: ${{ github.workspace }}\.nuget\packages |
| 20 | + NUGET_HTTP_CACHE_PATH: ${{ github.workspace }}\.nuget\http-cache |
19 | 21 |
|
20 | 22 | jobs: |
21 | 23 | # Ensures that the formatting in all XAML files across the codebase is correct for the latest commit. |
@@ -180,6 +182,12 @@ jobs: |
180 | 182 | with: |
181 | 183 | name: ${{ env.PREREQUISITE }} |
182 | 184 |
|
| 185 | + - name: Install Dependencies |
| 186 | + uses: "./.github/install_dependencies" |
| 187 | + with: |
| 188 | + dotnet-version: ${{ env.DOTNET_SDK }} |
| 189 | + run-uno-check: false |
| 190 | + |
183 | 191 | - name: Find appropriate project to build |
184 | 192 | run: | |
185 | 193 | if ($env:PROJECT -eq "Sdk") { |
@@ -241,6 +249,12 @@ jobs: |
241 | 249 | with: |
242 | 250 | name: ${{ env.PREREQUISITE }} |
243 | 251 |
|
| 252 | + - name: Install Dependencies |
| 253 | + uses: "./.github/install_dependencies" |
| 254 | + with: |
| 255 | + dotnet-version: ${{ env.DOTNET_SDK }} |
| 256 | + run-uno-check: false |
| 257 | + |
244 | 258 | - name: Find appropriate project to build |
245 | 259 | run: | |
246 | 260 | if ($env:PROJECT -eq "Core") { |
@@ -290,6 +304,12 @@ jobs: |
290 | 304 | with: |
291 | 305 | name: ${{ env.PREREQUISITE }} |
292 | 306 |
|
| 307 | + - name: Install Dependencies |
| 308 | + uses: "./.github/install_dependencies" |
| 309 | + with: |
| 310 | + dotnet-version: ${{ env.DOTNET_SDK }} |
| 311 | + run-uno-check: false |
| 312 | + |
293 | 313 | - name: Build |
294 | 314 | run: | |
295 | 315 | msbuild $env:THIS_PROJECT_PATH ` |
@@ -326,6 +346,12 @@ jobs: |
326 | 346 | with: |
327 | 347 | name: ${{ env.PREREQUISITE }} |
328 | 348 |
|
| 349 | + - name: Install Dependencies |
| 350 | + uses: "./.github/install_dependencies" |
| 351 | + with: |
| 352 | + dotnet-version: ${{ env.DOTNET_SDK }} |
| 353 | + run-uno-check: false |
| 354 | + |
329 | 355 | - name: Build |
330 | 356 | run: | |
331 | 357 | msbuild $env:THIS_PROJECT_PATH ` |
@@ -356,6 +382,12 @@ jobs: |
356 | 382 | with: |
357 | 383 | name: ${{ env.PREREQUISITE }} |
358 | 384 |
|
| 385 | + - name: Install Dependencies |
| 386 | + uses: "./.github/install_dependencies" |
| 387 | + with: |
| 388 | + dotnet-version: ${{ env.DOTNET_SDK }} |
| 389 | + run-uno-check: false |
| 390 | + |
359 | 391 | - name: Build |
360 | 392 | run: | |
361 | 393 | msbuild $env:THIS_PROJECT_PATH ` |
|
0 commit comments