Skip to content

Commit

Permalink
Try golang 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
soffokl authored and Zensey committed Sep 13, 2024
1 parent 35e8c66 commit dfb19b2
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bin/aliases
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
alias myst-home="cd $GOPATH/src/github.com/mysteriumnetwork/node"
alias myst="myst-home"

alias myst-broker="myst-home && docker-compose up broker"
alias myst-broker="myst-home && docker compose up broker"
alias myst-nats="myst-broker"

alias myst-consumer="myst-home && bin/build && bin/run_consumer"
Expand Down
2 changes: 1 addition & 1 deletion bin/builder_docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20 AS builder
FROM golang:1.22 AS builder

# Install FPM
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion bin/docker/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.20-alpine AS builder
FROM --platform=$BUILDPLATFORM golang:1.22-alpine AS builder

# Install packages
RUN apk add --no-cache git bash gcc musl-dev make linux-headers
Expand Down
2 changes: 1 addition & 1 deletion bin/release_ppa
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ echo "myst ($VERSION+build$BUILD+$DISTR) $DISTR; urgency=medium
echo '#!/usr/bin/make -f
export DH_VERBOSE := 1
export PATH := /usr/lib/go-1.20/bin/:$(PATH)
export PATH := /usr/lib/go-1.22/bin/:$(PATH)
export GOPATH := $(CURDIR)/go
export BUILD_COMMIT := '$BUILD_COMMIT'
export BUILD_BRANCH := '$BUILD_BRANCH'
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Maintainer: Mysterium Team <[email protected]>
Build-Depends:
dh-golang,
debhelper (>= 8.0.0),
golang-1.20,
golang-1.22,
Standards-Version: 3.9.7
Homepage: https://mysterium.network
Vcs-Git: git://github.com/mysteriumnetwork/node.git
Expand Down
2 changes: 1 addition & 1 deletion e2e/gorunner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM golang:1.20-alpine
FROM golang:1.22-alpine

RUN apk add --no-cache bash gcc musl-dev make linux-headers iptables ipset ca-certificates openvpn bash sudo openresolv
2 changes: 1 addition & 1 deletion localnet/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine
FROM golang:1.22-alpine

# Install packages
RUN apk add --no-cache iptables ipset ca-certificates openvpn wireguard-tools bash sudo openresolv gcc musl-dev make linux-headers vim curl tcpdump
Expand Down

0 comments on commit dfb19b2

Please sign in to comment.