From 0f912c72cc698f875ef8c288493dc7af54e2ad69 Mon Sep 17 00:00:00 2001 From: Emil Lauridsen Date: Thu, 2 Jan 2020 15:54:44 +0100 Subject: Blindfolded PowerShell coding --- .github/workflows/ci.yaml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to '.github/workflows/ci.yaml') diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0034ce49a..8d3c2865c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -48,13 +48,29 @@ jobs: with: command: test - - name: Prepare build directory for cache + - name: Prepare build directory for cache (UNIX) + if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' run: | find ./target/debug -maxdepth 1 -type f -delete \ && rm -fr ./target/debug/{deps,.fingerprint}/{*ra_*,*heavy_test*,*gen_lsp*,*thread_worker*} \ && rm -f ./target/.rustc_info.json \ && rm ./target/.slow_tests_cookie + - name: Prepare build directory for cache (Windows) + if: matrix.os == 'windows-latest' + run: >- + (Get-ChildItem ./target/debug -Recurse -Depth 1 -File | Remove-Item) -and + (Remove-Item -Force -Recurse ./target/debug/deps/*ra_*) -and + (Remove-Item -Force -Recurse ./target/debug/deps/*heavy_test*) -and + (Remove-Item -Force -Recurse ./target/debug/deps/*gen_lsp*) -and + (Remove-Item -Force -Recurse ./target/debug/deps/*thread_worker*) -and + (Remove-Item -Force -Recurse ./target/debug/.fingerprint/*ra_*) -and + (Remove-Item -Force -Recurse ./target/debug/.fingerprint/*heavy_test*) -and + (Remove-Item -Force -Recurse ./target/debug/.fingerprint/*gen_lsp*) -and + (Remove-Item -Force -Recurse ./target/debug/.fingerprint/*thread_worker*) -and + (Remove-Item -Force ./target/.rustc_info.json) -and + (Remove-Item ./target/.slow_tests_cookie) + type-script: name: TypeScript runs-on: ubuntu-latest -- cgit v1.2.3