From 1d6f7f4055c10011b1eca7bdbfee9da377561737 Mon Sep 17 00:00:00 2001 From: Emily Casey Date: Wed, 22 Jul 2020 10:28:58 -0400 Subject: [PATCH] Dont run windows tests in docker contianer in GHA Docker copy removes file attributes for windows symlink directories that need to be preserved for certain tests Signed-off-by: Emily Casey --- .github/workflows/build.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index daa73b4f5..bc3c78d27 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,13 +47,21 @@ jobs: git config --global core.eol lf git config --global core.symlinks true - uses: actions/checkout@v2 + - name: Set up go + uses: actions/setup-go@v2-beta + with: + go-version: '1.14' + - name: Install jq + run: | + choco install jq - name: Test run: | - make docker-run-windows DOCKER_CMD="make test" + make test shell: cmd - name: Build run: | - make docker-run-windows DOCKER_CMD="make build-windows package-windows" + make build-windows + make package-windows shell: cmd - uses: actions/upload-artifact@v2 with: