[info=878d2d6af5b403e3c45953c22cc4493e]

OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/golang-oldstable-image?expand=0&rev=24
This commit is contained in:
Dan Čermák 2023-09-06 17:06:17 +00:00 committed by Git OBS Bridge
parent 1d02609c39
commit d5ad152c54
2 changed files with 10 additions and 1 deletions

View File

@ -24,8 +24,12 @@ LABEL org.opensuse.release-stage="released"
# endlabelprefix
RUN set -euo pipefail; zypper -n in --no-recommends go1.20 go1.20-doc go1.20-race make git-core; zypper -n clean; rm -rf /var/log/*
RUN set -euo pipefail; zypper -n in --no-recommends go1.20 go1.20-doc make git-core; zypper -n clean; rm -rf /var/log/*
ENV GOLANG_VERSION="%%golang_version%%"
ENV GOPATH="/go"
ENV PATH="/go/bin:/usr/local/go/bin:/root/go/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# only available on go's tsan_arch architectures
#!ArchExclusiveline x86_64 aarch64 s390x ppc64le
RUN set -euo pipefail; if zypper -n install go1.20-race; then zypper -n clean; rm -rf /var/log/*; fi

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Sep 6 16:26:08 UTC 2023 - Dirk Mueller <dmueller@suse.com>
- install the race subpackage only on architectures where it is available
-------------------------------------------------------------------
Thu Aug 17 13:41:09 UTC 2023 - Dirk Mueller <dmueller@suse.com>