From 85f8a8ca4da3128005a84fff96690fc796928895 Mon Sep 17 00:00:00 2001 From: Nick Terrell Date: Wed, 2 Dec 2020 17:08:36 -0800 Subject: [PATCH] [CI] Add cmake test for source dirs with spaces --- .github/workflows/generic-dev.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generic-dev.yml b/.github/workflows/generic-dev.yml index 9fb4a0c8b..6b127aa7a 100644 --- a/.github/workflows/generic-dev.yml +++ b/.github/workflows/generic-dev.yml @@ -89,7 +89,11 @@ jobs: steps: - uses: actions/checkout@v2 - name: cmake build and test check - run: make cmakebuild + run: | + make cmakebuild + cp -r ./ "../zstd source" + cd "../zstd source" + make cmakebuild gcc-8-asan-ubsan-fuzz: runs-on: ubuntu-latest -- 2.47.3