.github/workflows: ci-sql-server-integration-tests.yaml: More iteration.

This commit is contained in:
Aaron Son
2022-10-04 13:27:03 -07:00
parent 61831cf91e
commit 8e21b4a87f
@@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ ubuntu-22.04, macos-latest, windows-latest ]
os: [ windows-latest ] # [ ubuntu-22.04, macos-latest, windows-latest ]
dolt_fmt: [ "__DOLT__", "__LD_1__" ]
exclude:
- os: "macos-latest"
@@ -41,13 +41,13 @@ jobs:
- name: Install Dolt
working-directory: ./go
run: |
go build -mod=readonly -o ../.ci_bin/dolt ./cmd/dolt/
go build -mod=readonly -o ../.ci_bin/dolt.exe ./cmd/dolt/
- name: Test all
env:
DOLT_FMT: ${{ matrix.dolt_fmt }}
run: |
if [ -n "$DOLT_FMT" ]; then export DOLT_DEFAULT_BIN_FORMAT="$DOLT_FMT"; fi
export DOLT_BIN_PATH="$(pwd)/../../.ci_bin/dolt"
export DOLT_BIN_PATH="$(pwd)/../../.ci_bin/dolt.exe"
echo "$DOLT_BIN_PATH"
ls -l "$DOLT_BIN_PATH"
go test .