misc: Update to golang 1.22

Ran:

go get -u ./...
go mod tidy

We also got rid of travis and simplified things a bit.
This commit is contained in:
James Shubin
2025-01-26 16:49:10 -05:00
parent d30ff6cfae
commit d30ea571f1
10 changed files with 308 additions and 391 deletions

View File

@@ -1,4 +1,4 @@
FROM golang:1.21
FROM golang:1.22
MAINTAINER Michał Czeraszkiewicz <contact@czerasz.com>

View File

@@ -1,4 +1,4 @@
FROM fedora:38
FROM fedora:41
LABEL org.opencontainers.image.authors="laurent.indermuehle@pm.me"
ENV GOPATH=/root/gopath

View File

@@ -6,7 +6,7 @@ ENV PATH=/opt/rh/rh-ruby22/root/usr/bin:/root/gopath/bin:/usr/local/sbin:/sbin:/
ENV LD_LIBRARY_PATH=/opt/rh/rh-ruby22/root/usr/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
ENV PKG_CONFIG_PATH=/opt/rh/rh-ruby22/root/usr/lib64/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}
RUN yum -y install epel-release wget unzip git make which centos-release-scl gcc && sed -i "s/enabled=0/enabled=1/" /etc/yum.repos.d/epel-testing.repo && yum -y install rh-ruby22 && wget -O /opt/go1.21.9.linux-amd64.tar.gz https://storage.googleapis.com/golang/go1.21.9.linux-amd64.tar.gz && tar -C /usr/local -xzf /opt/go1.21.9.linux-amd64.tar.gz
RUN yum -y install epel-release wget unzip git make which centos-release-scl gcc && sed -i "s/enabled=0/enabled=1/" /etc/yum.repos.d/epel-testing.repo && yum -y install rh-ruby22 && wget -O /opt/go1.22.11.linux-amd64.tar.gz https://storage.googleapis.com/golang/go1.22.11.linux-amd64.tar.gz && tar -C /usr/local -xzf /opt/go1.22.11.linux-amd64.tar.gz
RUN mkdir -p $GOPATH/src/github.com/purpleidea && cd $GOPATH/src/github.com/purpleidea && git clone --recursive https://github.com/purpleidea/mgmt
RUN go get -u gopkg.in/alecthomas/gometalinter.v1 && cd $GOPATH/src/github.com/purpleidea/mgmt && make deps && make build
CMD ["/bin/bash"]

View File

@@ -1,4 +1,4 @@
FROM golang:1.21
FROM golang:1.22
MAINTAINER Michał Czeraszkiewicz <contact@czerasz.com>