From ef481f1f2d839621b8ed20eac2007dd6acdca029 Mon Sep 17 00:00:00 2001 From: IhateTrains Date: Sat, 6 Jul 2024 19:23:14 +0100 Subject: [PATCH] Use the noramdisk runner for integration tests (#2053) --- .github/workflows/integration_tests.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 73a7e595f..79dde5eea 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -1,9 +1,6 @@ name: "Integration tests" on: - push: # TODO: remove this when integration tests cleanup works correctly - branches: - - master release: types: [published] @@ -13,7 +10,7 @@ concurrency: jobs: run_test_conversions: - runs-on: [self-hosted, windows] + runs-on: [self-hosted, windows, noramdisk] strategy: fail-fast: false matrix: @@ -59,14 +56,6 @@ jobs: run: | dotnet ImperatorToCK3Converter.dll - - name: "Check file handles" - # check what processes have handles to the files in the Github workspace dir - run: | - Get-ChildItem -Path C:\actions-runner\_work\ImperatorToCK3\ImperatorToCK3\Release\ImperatorToCK3 -Recurse -Force | ForEach-Object { - Write-Host "" - Write-Host "Checking handles for $($_.FullName)" - c:\sysinternals\handle.exe -a -nobanner -accepteula $_.FullName - } - name: "Cleanup" if: always() run: |