Skip to content
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

ci: remove vendor dir, Go 1.13.x -> 1.14.x, fix integration test data #432

Merged
merged 4 commits into from
May 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: go
dist: trusty

go:
- "1.13.x"
- "1.14.x"

install:
# Install `golangci-lint` using the installer script
Expand Down
2 changes: 1 addition & 1 deletion v2/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ require (
golang.org/x/text v0.3.0
)

go 1.13
go 1.14
16 changes: 9 additions & 7 deletions v2/integration/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@
"ErrCount": 130
},
"e_ext_name_constraints_not_in_ca": {},
"e_ext_nc_intersects_reserved_ip": {},
"e_ext_policy_constraints_empty": {},
"e_ext_policy_constraints_not_critical": {},
"e_ext_policy_map_any_policy": {},
Expand Down Expand Up @@ -422,13 +423,17 @@
"e_mp_authority_key_identifier_correct": {
"ErrCount": 135
},
"e_mp_ecdsa_pub_key_encoding_correct": {},
"e_mp_ecdsa_signature_encoding_correct": {},
"e_mp_exponent_cannot_be_one": {},
"e_mp_modulus_must_be_2048_bits_or_more": {
"ErrCount": 1
},
"e_mp_modulus_must_be_divisible_by_8": {
"ErrCount": 21
},
"e_mp_rsassa-pss_in_spki": {},
"e_mp_rsassa-pss_parameters_encoding_in_signature_algorithm_correct": {},
"e_name_constraint_empty": {},
"e_name_constraint_maximum_not_absent": {},
"e_name_constraint_minimum_non_zero": {},
Expand Down Expand Up @@ -533,26 +538,22 @@
"ErrCount": 95
},
"e_sub_cert_locality_name_must_not_appear": {
"ErrCount": 23
"ErrCount": 13
},
"e_sub_cert_not_is_ca": {
"ErrCount": 1
},
"e_sub_cert_or_sub_ca_using_sha1": {
"ErrCount": 12
},
"e_sub_cert_postal_code_must_not_appear": {
"ErrCount": 8
},
"e_sub_cert_postal_code_must_not_appear": {},
"e_sub_cert_province_must_appear": {
"ErrCount": 95
},
"e_sub_cert_province_must_not_appear": {
"ErrCount": 16
},
"e_sub_cert_street_address_should_not_exist": {
"ErrCount": 8
},
"e_sub_cert_street_address_should_not_exist": {},
"e_sub_cert_valid_time_longer_than_39_months": {
"ErrCount": 109
},
Expand Down Expand Up @@ -609,6 +610,7 @@
"e_tbs_signature_rsa_encryption_parameter_not_null": {
"ErrCount": 96
},
"e_tls_server_cert_valid_time_longer_than_398_days": {},
"e_utc_time_does_not_include_seconds": {
"ErrCount": 1
},
Expand Down
1 change: 0 additions & 1 deletion v2/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ INT_FLAGS :=

CMDS = zlint zlint-gtld-update
CMD_PREFIX = ./cmd/
GO_ENV = GO111MODULE="on" GOFLAGS="-mod=vendor"
BUILD = $(GO_ENV) go build
TEST = $(GO_ENV) GORACE=halt_on_error=1 go test -race
INT_TEST = $(GO_ENV) go test -v -tags integration -timeout 20m ./integration/... -parallelism $(PARALLELISM) $(INT_FLAGS)
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions v2/vendor/github.com/sirupsen/logrus/.gitignore

This file was deleted.

52 changes: 0 additions & 52 deletions v2/vendor/github.com/sirupsen/logrus/.travis.yml

This file was deleted.

165 changes: 0 additions & 165 deletions v2/vendor/github.com/sirupsen/logrus/CHANGELOG.md

This file was deleted.

Loading