diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-19 08:08:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 08:08:45 -0400 |
commit | 948c5e915aec709beb4e171a72c7e54504889baf (patch) | |
tree | 2fa0dc52e5c9e05ba9f81b22c806d359abc99a26 /.cirrus.yml | |
parent | 7093885df73989acd2aa2dd936695d0b30a3dcf8 (diff) | |
parent | 653117087fd6d6d956ce212bfbec0e4091a96010 (diff) | |
download | podman-948c5e915aec709beb4e171a72c7e54504889baf.tar.gz podman-948c5e915aec709beb4e171a72c7e54504889baf.tar.bz2 podman-948c5e915aec709beb4e171a72c7e54504889baf.zip |
Merge pull request #13870 from kolyshkin/makefile-cleanups
Makefile: simplify for modern Go
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 324fd32f6..ee0131279 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -7,9 +7,11 @@ env: #### # Name of the ultimate destination branch for this CI run, PR or post-merge. DEST_BRANCH: "main" + # Sane (default) value for GOPROXY and GOSUMDB. + GOPROXY: "https://proxy.golang.org,direct" + GOSUMDB: "sum.golang.org" # Overrides default location (/tmp/cirrus) for repo clone GOPATH: &gopath "/var/tmp/go" - GOBIN: "${GOPATH}/bin" GOCACHE: "${GOPATH}/cache" GOSRC: &gosrc "/var/tmp/go/src/github.com/containers/podman" CIRRUS_WORKING_DIR: *gosrc |