Skip to content

Commit

Permalink
print matrix values
Browse files Browse the repository at this point in the history
  • Loading branch information
jetersen committed Dec 9, 2024
1 parent 735b89a commit 3bb0347
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,15 @@ jobs:
- os: windows-2019
cache: false
DOTNET_INSTALL_DIR: D:\dotnet
NUGET_PACKAGES: D:\nuget\packages
- os: windows-2022
cache: false
DOTNET_INSTALL_DIR: D:\dotnet
NUGET_PACKAGES: D:\nuget\packages
- os: windows-2019
cache: true
DOTNET_INSTALL_DIR: D:\dotnet
NUGET_PACKAGES: D:\nuget\packages
- os: windows-2022
cache: true
DOTNET_INSTALL_DIR: D:\dotnet
NUGET_PACKAGES: D:\nuget\packages
- os: windows-2019
cache: false
DOTNET_INSTALL_DIR: ''
Expand All @@ -63,7 +59,14 @@ jobs:
shell: pwsh
run: |
echo "DOTNET_INSTALL_DIR=${{ matrix.DOTNET_INSTALL_DIR }}" >> $ENV:GITHUB_ENV
echo "NUGET_PACKAGES=${{ matrix.NUGET_PACKAGES }}" >> $ENV:GITHUB_ENV
echo "NUGET_PACKAGES=D:\nuget\packages" >> $ENV:GITHUB_ENV
- name: Print matrix values
run: |
echo "OS: ${{ matrix.os }}"
echo "Cache: ${{ matrix.cache }}"
echo "DOTNET_INSTALL_DIR: ${{ matrix.DOTNET_INSTALL_DIR }}"
echo "NUGET_PACKAGES: ${{ env.NUGET_PACKAGES }}"
- name: Cache NuGet packages
if: matrix.cache
Expand Down

0 comments on commit 3bb0347

Please sign in to comment.