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

feat: upgrade to Go 1.13. Closes #1375 #2097

Merged
merged 41 commits into from
Feb 12, 2020
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
a20001d
chore: remove gogo
alexec Jan 29, 2020
636cd1f
Revert "chore: remove gogo"
alexec Jan 29, 2020
1a01e08
go13
alexec Jan 30, 2020
b4b9086
remove gogo
alexec Jan 30, 2020
4774eed
go13
alexec Jan 30, 2020
65b6525
go13
alexec Jan 30, 2020
4d7d313
sdks
alexec Jan 30, 2020
6430d11
go mod
alexec Jan 30, 2020
bf7a840
go13
alexec Jan 30, 2020
b6fb675
fix: generate swagger where you would expect
alexec Jan 30, 2020
cd3be82
vendor
alexec Jan 30, 2020
46bd5a7
gogo
alexec Jan 30, 2020
0c06592
codegen
alexec Jan 30, 2020
e9f9d14
1
alexec Jan 30, 2020
2c5f576
cron
alexec Jan 30, 2020
75ca8b7
rm autorestn
alexec Jan 30, 2020
45e902b
try again
alexec Jan 30, 2020
f619c49
reimport gogo
alexec Jan 30, 2020
990f049
reimport gogo
alexec Jan 30, 2020
a8c6cfc
Merge branch 'master' into go13
alexec Jan 30, 2020
36cb1f7
Merge branch 'master' into go13
alexec Jan 31, 2020
37af6ec
Merge branch 'master' into go13
alexec Feb 1, 2020
1ac3f2f
Merge branch 'master' into go13
alexec Feb 6, 2020
b5a9a4f
make codegen
alexec Feb 6, 2020
d477935
lint
alexec Feb 6, 2020
b041f57
Update server/info/info_server.go
alexec Feb 7, 2020
776dba7
circle
alexec Feb 7, 2020
a8dbee0
go get k8s.io/code-generator/cmd/go-to-protobuf@v0.16.7-beta.0
alexec Feb 7, 2020
f68a6f7
git diff --exit-code
alexec Feb 7, 2020
3743fbd
fix test
alexec Feb 7, 2020
a1d104e
remove vendor
alexec Feb 7, 2020
92ebb41
change
alexec Feb 7, 2020
0b171b4
try and fix codegen on ci
alexec Feb 7, 2020
c6a073d
Merge branch 'master' into go13
alexec Feb 7, 2020
4e681e1
removed unused files
alexec Feb 7, 2020
6caf5c5
remove codegen for go13
alexec Feb 7, 2020
50d5c54
Merge branch 'master' into go13
alexec Feb 7, 2020
93a08a9
make codegen
alexec Feb 7, 2020
7ebf1bb
Merge branch 'master' into go13
alexec Feb 7, 2020
e967e9a
go mode cache
alexec Feb 7, 2020
527afa1
Merge branch 'master' into go13
alexec Feb 11, 2020
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
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ commands:
install_golang:
steps:
- run:
name: Install Golang v1.12.6
name: Install Golang v1.13.4
command: |
go get golang.org/dl/go1.12.6
[ -e /home/circleci/sdk/go1.12.6 ] || go1.12.6 download
go get golang.org/dl/go1.13.4
[ -e /home/circleci/sdk/go1.13.4 ] || go1.13.4 download
echo "export GOPATH=/home/circleci/.go_workspace" | tee -a $BASH_ENV
echo "export PATH=/home/circleci/sdk/go1.12.6/bin:\$PATH" | tee -a $BASH_ENV
echo "export PATH=/home/circleci/sdk/go1.13.4/bin:\$PATH" | tee -a $BASH_ENV
save_go_cache:
steps:
- save_cache:
name: Save Golang cache
key: go-v5-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}
paths:
- /home/circleci/.cache/go-build
- /home/circleci/sdk/go1.12.6
- /home/circleci/sdk/go1.13.4
when: always
restore_go_cache:
steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ cmd/**/debug
hack/**/debug
/argo
/argoexec
/sdks
debug.test
*.iml
/coverage.out
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Initial stage which pulls prepares build dependencies and CLI tooling we need for our final image
# Also used as the image in CI jobs so needs all dependencies
####################################################################################################
FROM golang:1.11.5 as builder
FROM golang:1.13.4 as builder

RUN apt-get update && apt-get install -y \
git \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Initial stage which pulls prepares build dependencies and CLI tooling we need for our final image
# Also used as the image in CI jobs so needs all dependencies
####################################################################################################
FROM golang:1.11.5 as builder
FROM golang:1.13.4 as builder

RUN apt-get update && apt-get install -y \
git \
Expand Down
Loading