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" #103

Merged
merged 11 commits into from
Oct 15, 2019
Merged

Commits on Sep 16, 2019

  1. Enable hostpath expansion

    gnufied committed Sep 16, 2019
    Configuration menu
    Copy the full SHA
    6208f6a View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-csi#33 from gnufied/enable-hostpath-exp…

    …ansion
    
    Enable hostpath expansion
    k8s-ci-robot committed Sep 16, 2019
    Configuration menu
    Copy the full SHA
    0affdf9 View commit details
    Browse the repository at this point in the history

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 <[email protected]>
    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
    2c8c769 View commit details
    Browse the repository at this point in the history
  2. replace "dep" with "go mod"

    The conversion was done with
       go mod init
       go mod tidy
       go mod vendor
    
    go-get-kubernetes.sh and overriding k/k modules were not necessary.
    pohly committed Oct 15, 2019
    Configuration menu
    Copy the full SHA
    779a88c View commit details
    Browse the repository at this point in the history