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

replace "dep" with "go mod" #60

Merged
merged 9 commits into from
Oct 16, 2019
Merged

Commits on Oct 4, 2019

  1. update Go mod support

    It turned out that changes like
    kubernetes-csi/csi-lib-utils#33 should better
    have been committed after `go mod tidy` because that adds some
    indirect dependencies in that example.
    
    The revised `test-vendor` checks for that and (just in case that this
    ever becomes desired) allows projects to not have a vendor directory
    when using `go mod`.
    
    How to use `go mod` properly gets documented in the README.md, because
    there are such pitfalls.
    pohly committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    194289a View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2019

  1. go-get-kubernetes.sh: automate Kubernetes dependency handling

    This script handles the necessary "replace" statements and determines
    which packages need to be updated in lockstep.
    pohly committed Oct 7, 2019
    Configuration menu
    Copy the full SHA
    c1078a6 View commit details
    Browse the repository at this point in the history
  2. Build Windows only for amd64

    Signed-off-by: Deep Debroy <ddebroy@docker.com>
    ddebroy committed Oct 7, 2019
    Configuration menu
    Copy the full SHA
    2d6b3ce View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-csi#35 from ddebroy/winbld2

    Build Windows only for amd64
    k8s-ci-robot committed Oct 7, 2019
    Configuration menu
    Copy the full SHA
    518d6af View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2019

  1. Merge pull request kubernetes-csi#34 from pohly/go-mod-tidy

    update Go mod support
    k8s-ci-robot committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    2c81919 View commit details
    Browse the repository at this point in the history
  2. Do full git clones in travis. Shallow clones are causing test-subtree

    errors when the depth is exactly 50.
    msau42 committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    f1697d2 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-csi#36 from msau42/full-clone

    Do full git clones in travis
    k8s-ci-robot committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    adf00fe View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2019

  1. release-tools: update

    pohly committed Oct 15, 2019
    Configuration menu
    Copy the full SHA
    2ebf573 View commit details
    Browse the repository at this point in the history
  2. replace "dep" with "go mod", Kubernetes 1.15.4

    A simple "go mod init && go mod tidy" did not pick compatible versions
    of the k/k modules, so go-get-kubernetes.sh had to be used, which in
    turn implied that a new Kubernetes release with go.mod file had to be
    picked, because that is needed by the script.
    pohly committed Oct 15, 2019
    Configuration menu
    Copy the full SHA
    b12fcbb View commit details
    Browse the repository at this point in the history