File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -189,9 +189,11 @@ jobs:
189189 run : |
190190 export PATH="${{ github.workspace }}/bin:$PATH"
191191 if [ "${{ matrix.db_type }}" == "tidb" ]; then
192- TIDB_VERSION=${{ matrix.db_version }} go test -tags=testcontainers -v ./mysql/... -run WithTestcontainers -timeout=30m
192+ export TIDB_VERSION=${{ matrix.db_version }}
193+ go test -tags=testcontainers -v ./mysql/... -run WithTestcontainers -timeout=30m
193194 else
194- DOCKER_IMAGE=${{ matrix.docker_image }} go test -tags=testcontainers -v ./mysql/... -run WithTestcontainers -timeout=30m
195+ export DOCKER_IMAGE=${{ matrix.docker_image }}
196+ go test -tags=testcontainers -v ./mysql/... -run WithTestcontainers -timeout=30m
195197 fi
196198 release :
197199 name : Release
You can’t perform that action at this time.
0 commit comments