Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Tailscale version to 1.18.x #229

Merged
merged 24 commits into from
Nov 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5a2cae5
Add new Tailscale version to integration tests
kradalby Nov 19, 2021
3492648
Use .1
kradalby Nov 23, 2021
aab4a60
Merge branch 'main' into kradalby-patch-2
kradalby Nov 25, 2021
50b47ad
Upgrade tailscale to 1.18
kradalby Nov 26, 2021
c63c259
Switch wgkey for types/key
kradalby Nov 26, 2021
0741814
Remove config loading of private key path
kradalby Nov 26, 2021
cfd53bc
Factor wgkey to types/key
kradalby Nov 26, 2021
0012c76
Make it easier to run cli integration tests
kradalby Nov 26, 2021
c38f00f
Unmarshal keys in the non-deprecated way
kradalby Nov 26, 2021
59aeaa8
Ensure we always have the key prefix when needed
kradalby Nov 27, 2021
d96b681
Fix node cli integration test
kradalby Nov 27, 2021
ef81845
Merge branch 'main' into kradalby-patch-2
kradalby Nov 27, 2021
2ae882d
Update go version
kradalby Nov 27, 2021
550f401
Merge branch 'kradalby-patch-2' of github.com:juanfont/headscale into…
kradalby Nov 27, 2021
6295b0b
Go mod tidy
kradalby Nov 27, 2021
e9d5214
Disable tests which is broken due to split version
kradalby Nov 27, 2021
ff8c961
Make sure comparison of nodekey is on the same format
kradalby Nov 28, 2021
32006f3
Use go 1.17
kradalby Nov 28, 2021
34f4109
Add back privatekey, but automatically generate it if it does not exist
kradalby Nov 28, 2021
e167be6
Remove generate private key step from docs
kradalby Nov 28, 2021
5b85870
Remove non-existing field from oidc test
kradalby Nov 28, 2021
8932133
Merge branch 'main' into kradalby-patch-2
kradalby Nov 28, 2021
8e9a946
Remove outdate integration test private key
kradalby Nov 28, 2021
2d2ae62
Merge branch 'kradalby-patch-2' of github.com:juanfont/headscale into…
kradalby Nov 28, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "1.16.3"
go-version: "1.17.3"

- name: Run Integration tests
run: go test -tags integration -timeout 30m
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "1.16.3" # The Go version to download (if necessary) and use.
go-version: "1.17.3" # The Go version to download (if necessary) and use.

# Install all the dependencies
- name: Install dependencies
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ test:
test_integration:
go test -tags integration -timeout 30m ./...

test_integration_cli:
go test -tags integration -v integration_cli_test.go integration_common_test.go

coverprofile_func:
go tool cover -func=coverage.out

Expand Down
Loading