Skip to content

Commit

Permalink
Update CI script with current Go versions, change wrapper version to …
Browse files Browse the repository at this point in the history
…v1.2.2

New wrapper version for release with updated error messages in it from YottaDB r1.36. Also updated
CI script to add new Go versions we want to test with.
  • Loading branch information
estess committed Dec 29, 2022
1 parent 31fbb71 commit a9539d2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
40 changes: 20 additions & 20 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,75 +62,75 @@ before_script:
#
# In general, test first and last minor version of each major version
#
go1.13_tests:
unit_tests1.13_tests:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.13"

go1.13.8_tests:
unit_tests1.13.8_tests:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.13.8"

go1.14_tests:
unit_tests1.14_tests:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.14"

go1.14.13_tests:
unit_tests1.14.13_tests:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.14.13"

go1.15_tests:
unit_tests1.15_tests:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.15"

go1.15.15_tests:
unit_tests1.15.15_tests:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.15.15"

go1.16_tests:
unit_tests1.16:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.16"

go1.16.10_tests:
unit_tests1.16.15:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.16.10"
GOLANG_VERSION: "1.16.15"

go1.17_tests:
unit_tests1.17:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.17"

go1.17.3_tests:
unit_tests1.17.13:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.17.3"
GOLANG_VERSION: "1.17.13"

unit_tests1.16:
unit_tests1.18:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.16"
GOLANG_VERSION: "1.18"

unit_tests1.16.13:
unit_tests1.18.9:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.16.13"
GOLANG_VERSION: "1.18.9"

unit_tests1.17:
unit_tests1.19:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.17"
GOLANG_VERSION: "1.19"

unit_tests1.17.6:
unit_tests1.19.4:
extends: .unit_tests
variables:
GOLANG_VERSION: "1.17.6"
GOLANG_VERSION: "1.19.4"


race_detector:
Expand Down
2 changes: 1 addition & 1 deletion yottadb.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ var MaximumSigAckWait time.Duration = DefaultMaximumSigAckWait
// on new content, either the third piece of the version will be bumped to an even value or the second piece of the
// version will be bumped by 1 and the third piece of the version set to 0. On rare occasions, we may bump the first
// piece of the version and zero the others when the changes are significant.
const WrapperRelease string = "v1.2.0"
const WrapperRelease string = "v1.2.2"

// MinimumYDBReleaseMajor - (int) Minimum major release number required by this wrapper of the linked YottaDB
const MinimumYDBReleaseMajor int = 1
Expand Down

0 comments on commit a9539d2

Please sign in to comment.