mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-11-04 01:51:04 +01:00 
			
		
		
		
	Merge pull request #778 from juanfont/bump-go-1.19
Target Go 1.19 for Headscale
This commit is contained in:
		
						commit
						24bafdf2bb
					
				
							
								
								
									
										2
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							@ -18,7 +18,7 @@ jobs:
 | 
			
		||||
      - name: Set up Go
 | 
			
		||||
        uses: actions/setup-go@v2
 | 
			
		||||
        with:
 | 
			
		||||
          go-version: 1.18.0
 | 
			
		||||
          go-version: 1.19.0
 | 
			
		||||
 | 
			
		||||
      - name: Install dependencies
 | 
			
		||||
        run: |
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
---
 | 
			
		||||
before:
 | 
			
		||||
  hooks:
 | 
			
		||||
    - go mod tidy -compat=1.18
 | 
			
		||||
    - go mod tidy -compat=1.19
 | 
			
		||||
 | 
			
		||||
release:
 | 
			
		||||
  prerelease: auto
 | 
			
		||||
 | 
			
		||||
@ -4,6 +4,7 @@
 | 
			
		||||
 | 
			
		||||
- Added support for Tailscale TS2021 protocol [#738](https://github.com/juanfont/headscale/pull/738)
 | 
			
		||||
- Add ability to specify config location via env var `HEADSCALE_CONFIG` [#674](https://github.com/juanfont/headscale/issues/674)
 | 
			
		||||
- Target Go 1.19 for Headscale [#778](https://github.com/juanfont/headscale/pull/778)
 | 
			
		||||
 | 
			
		||||
## 0.16.4 (2022-08-21)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
# Builder image
 | 
			
		||||
FROM docker.io/golang:1.18.0-bullseye AS build
 | 
			
		||||
FROM docker.io/golang:1.19.0-bullseye AS build
 | 
			
		||||
ARG VERSION=dev
 | 
			
		||||
ENV GOPATH /go
 | 
			
		||||
WORKDIR /go/src/headscale
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
# Builder image
 | 
			
		||||
FROM docker.io/golang:1.18.0-alpine AS build
 | 
			
		||||
FROM docker.io/golang:1.19.0-alpine AS build
 | 
			
		||||
ARG VERSION=dev
 | 
			
		||||
ENV GOPATH /go
 | 
			
		||||
WORKDIR /go/src/headscale
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
# Builder image
 | 
			
		||||
FROM docker.io/golang:1.18.0-bullseye AS build
 | 
			
		||||
FROM docker.io/golang:1.19.0-bullseye AS build
 | 
			
		||||
ARG VERSION=dev
 | 
			
		||||
ENV GOPATH /go
 | 
			
		||||
WORKDIR /go/src/headscale
 | 
			
		||||
 | 
			
		||||
@ -17,7 +17,7 @@ describing how to make `headscale` run properly in a server environment.
 | 
			
		||||
 | 
			
		||||
```shell
 | 
			
		||||
# Install prerequistes
 | 
			
		||||
# 1. go v1.18+: headscale newer than 0.15 needs go 1.18+ to compile
 | 
			
		||||
# 1. go v1.19+: headscale newer than 0.17 needs go 1.19+ to compile
 | 
			
		||||
# 2. gmake: Makefile in the headscale repo is written in GNU make syntax
 | 
			
		||||
pkg_add -D snap go
 | 
			
		||||
pkg_add gmake
 | 
			
		||||
@ -46,7 +46,7 @@ cp headscale /usr/local/sbin
 | 
			
		||||
 | 
			
		||||
```shell
 | 
			
		||||
# Install prerequistes
 | 
			
		||||
# 1. go v1.18+: headscale newer than 0.15 needs go 1.18+ to compile
 | 
			
		||||
# 1. go v1.19+: headscale newer than 0.17 needs go 1.19+ to compile
 | 
			
		||||
# 2. gmake: Makefile in the headscale repo is written in GNU make syntax
 | 
			
		||||
 | 
			
		||||
git clone https://github.com/juanfont/headscale.git
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user