.github: Run go/libraries/doltcore/sqle/altertests in separate job. Run them without -race.

This commit is contained in:
Aaron Son
2021-06-10 16:48:46 -07:00
parent bcafd4b548
commit 36a9976e9d
26 changed files with 55 additions and 0 deletions

View File

@@ -55,3 +55,27 @@ jobs:
done
env:
MATRIX_OS: ${{ matrix.os }}
altertests:
name: Go tests sqle/altertests
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-10.15, ubuntu-18.04, windows-latest]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.15
id: go
- uses: actions/checkout@v2
- name: Test All
working-directory: ./go
run: |
go test -timeout 30m -race ./libraries/doltcore/sqle/altertests
env:
MATRIX_OS: ${{ matrix.os }}
DOLT_TEST_RUN_ALTERTESTS: "true"