From e205c4f5c8a96659dbab777cc4720a806942f9e0 Mon Sep 17 00:00:00 2001 From: V-X Date: Thu, 17 Oct 2019 22:44:30 -0500 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d104351..29c7f68 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: shell: pwsh run: | Invoke-WebRequest -OutFile ultralight.7z https://ultralight-sdk.sfo2.cdn.digitaloceanspaces.com/ultralight-sdk-latest-win-x64.7z - 7z e ultralight.7z *.dll -r + 7z e ultralight.7z *.dll -r -o* - name: Test run: go test Windows_x32: @@ -31,7 +31,7 @@ jobs: run: | choco install mingw --x86 --force Invoke-WebRequest -OutFile ultralight.7z https://ultralight-sdk.sfo2.cdn.digitaloceanspaces.com/ultralight-sdk-latest-win-x86.7z - 7z e ultralight.7z *.dll -r + 7z e ultralight.7z *.dll -r -o* - name: Test env: GOARCH: 386 @@ -51,7 +51,7 @@ jobs: - name: Install Deps run: | wget -O ultralight.7z https://ultralight-sdk.sfo2.cdn.digitaloceanspaces.com/ultralight-sdk-latest-linux-x64.7z - 7z e ultralight.7z *.so -r + 7z e ultralight.7z *.so -r -o* - name: Test run: go test Mac_x64: @@ -67,6 +67,6 @@ jobs: run: | brew install p7zip wget -O ultralight.7z https://ultralight-sdk.sfo2.cdn.digitaloceanspaces.com/ultralight-sdk-latest-mac-x64.7z - 7z e ultralight.7z *.dylib -r + 7z e ultralight.7z *.dylib -r -o* - name: Test - run: go test + run: go -ldflags "-r ." test