Skip to content

Commit

Permalink
Dont run windows tests in docker contianer in GHA
Browse files Browse the repository at this point in the history
Docker copy removes file attributes for windows symlink directories that need to be preserved for certain tests

Signed-off-by: Emily Casey <ecasey@vmware.com>
  • Loading branch information
ekcasey committed Jul 22, 2020
1 parent 05a8132 commit 1d6f7f4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1d6f7f4

Please sign in to comment.