From 0a035d75651c168f15e441d80bb8f020227b084b Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Tue, 15 Sep 2020 10:32:20 +0700 Subject: [PATCH] run i386 unit tests on GitHub actions --- .github/workflows/unit.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index b0977437..f8f579fd 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -26,6 +26,12 @@ jobs: env: TIMESCALE_FACTOR: 10 run: ginkgo -r -v -cover -randomizeAllSpecs -randomizeSuites -trace -skipPackage integrationtests,benchmark + - name: Run tests (32 bit) + if: ${{ matrix.os != 'macos' }} # can't run 32 bit tests on OSX. + env: + TIMESCALE_FACTOR: 10 + GOARCH: 386 + run: ginkgo -r -v -cover -randomizeAllSpecs -randomizeSuites -trace -skipPackage integrationtests,benchmark - name: Run tests with race detector if: ${{ matrix.os == 'ubuntu' }} # speed things up. Windows and OSX VMs are slow env: