ci: add back test cache

This commit is contained in:
Caelan Sayler
2024-05-24 16:12:07 +01:00
parent d02194a600
commit 242f5a9283

View File

@@ -99,7 +99,7 @@ jobs:
os: [macos-latest, windows-latest, ubuntu-latest] os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
env: env:
# NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
VELOPACK_GITHUB_TEST_TOKEN: ${{ secrets.VELOPACK_GITHUB_TEST_TOKEN }} VELOPACK_GITHUB_TEST_TOKEN: ${{ secrets.VELOPACK_GITHUB_TEST_TOKEN }}
VELOPACK_B2_TEST_TOKEN: ${{ secrets.VELOPACK_B2_TEST_TOKEN }} VELOPACK_B2_TEST_TOKEN: ${{ secrets.VELOPACK_B2_TEST_TOKEN }}
VELOPACK_AZ_TEST_TOKEN: ${{ secrets.VELOPACK_AZ_TEST_TOKEN }} VELOPACK_AZ_TEST_TOKEN: ${{ secrets.VELOPACK_AZ_TEST_TOKEN }}
@@ -107,12 +107,12 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
# - uses: actions/cache@v4 - uses: actions/cache@v4
# with: with:
# path: ${{ github.workspace }}/.nuget/packages path: ${{ github.workspace }}/.nuget/packages
# key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
# restore-keys: | restore-keys: |
# ${{ runner.os }}-nuget- ${{ runner.os }}-nuget-
- name: Install NBGV - name: Install NBGV
run: dotnet tool install -g nbgv run: dotnet tool install -g nbgv
if: ${{ matrix.os == 'macos-latest' }} if: ${{ matrix.os == 'macos-latest' }}
@@ -161,7 +161,7 @@ jobs:
name: rust-${{ matrix.os }} name: rust-${{ matrix.os }}
path: src/Rust/target/release path: src/Rust/target/release
- name: Test .NET - name: Test .NET
run: dotnet test --no-build -c Release -l "console;verbosity=detailed;consoleLoggerParameters=ErrorsOnly" -l GithubActions -- RunConfiguration.CollectSourceInformation=true run: dotnet test --no-build -c Release -l "console;verbosity=detailed;consoleLoggerParameters=ErrorsOnly;ForceConsoleColor;Summary" -l GithubActions -- RunConfiguration.CollectSourceInformation=true
# - name: Test .NET Velopack.Tests # - name: Test .NET Velopack.Tests
# run: dotnet test --no-build -c Release test/Velopack.Tests/Velopack.Tests.csproj # run: dotnet test --no-build -c Release test/Velopack.Tests/Velopack.Tests.csproj
# - name: Test .NET Velopack.Packaging.Tests # - name: Test .NET Velopack.Packaging.Tests