-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix broken builds #254
Comments
Builds are now failing b/c of issues w/ the MS SQLServer docker tests... Builds are failing due to: microsoft/mssql-docker#441
|
I opened #270 to address the API version mismatch edit: copied the wrong link |
The version match issue is no longer occurring, but thanks for the PR to protect us from the issue in the future! Builds are currently failing due to the MS SQLServer Docker container not starting up... |
Will drop official support for MS SQL Server so future releases aren't blocked, see: #160 (comment) |
Fixed by d068374 |
Addresses: golang-migrate/migrate#254
Describe the Bug
CI builds are broken due to docker client/server API mismatches.
We're currently getting the following error message when pulling docker images:
Error response from daemon: client version 1.39 is too new. Maximum supported API version is 1.38
Steps to Reproduce
Run a build on Travis CI.
Example: https://travis-ci.com/golang-migrate/migrate/builds/120554304
Expected Behavior
Docker images should be pulled w/o any issues and builds should succeed
Migrate Version
N/A
Loaded Source Drivers
N/A
Loaded Database Drivers
N/A
Go Version
N/A
Stacktrace
N/A
Additional context
Need to use docker version
18.09
at minimum to support API version1.39
https://docs.docker.com/develop/sdk/#api-version-matrix
Could fix by:
https://docs.travis-ci.com/user/docker/#installing-a-newer-docker-version
18.09.3
: https://circleci.com/docs/2.0/building-docker-images/#docker-versionThe text was updated successfully, but these errors were encountered: