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

fix: various repo maintenance #402

Merged
merged 2 commits into from
Feb 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
strategy:
matrix:
golang:
#- 1.13
- 1.14
- 1.15.x
- 1.16.x
steps:
- uses: actions/checkout@v2
- name: Install Go
Expand All @@ -47,7 +47,8 @@ jobs:
strategy:
matrix:
golang:
- 1.14
- 1.15.x
- 1.16.x
steps:
- uses: actions/checkout@v2
- name: Install Go
Expand All @@ -68,10 +69,10 @@ jobs:
strategy:
matrix:
golang:
- 1.11
- 1.12
- 1.13
- 1.14
- 1.13.x
- 1.14.x
- 1.15.x
- 1.16.x
steps:
- uses: actions/checkout@v2
- name: Install Go
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
coverage.txt
contrib/docker/entrypoint
/advanced-ssh-config
Expand Down
3 changes: 3 additions & 0 deletions AUTHORS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG VCS_REF
ARG VERSION

# build
FROM golang:1.15-alpine as builder
FROM golang:1.16-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/moul.io/assh
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ gen-release: generate
GOOS=openbsd GOARCH=386 go build $(GO_INSTALL_OPTS) -i -v -o .release/assh_openbsd_386 .
GOOS=openbsd GOARCH=arm go build $(GO_INSTALL_OPTS) -i -v -o .release/assh_openbsd_arm .
GOOS=darwin GOARCH=amd64 go build $(GO_INSTALL_OPTS) -i -v -o .release/assh_darwin_amd64 .
GOOS=darwin GOARCH=386 go build $(GO_INSTALL_OPTS) -i -v -o .release/assh_darwin_386 .
#GOOS=darwin GOARCH=386 go build $(GO_INSTALL_OPTS) -i -v -o .release/assh_darwin_386 .
#GOOS=darwin GOARCH=arm go build $(GO_INSTALL_OPTS) -i -v -o .release/assh_darwin_arm .
GOOS=netbsd GOARCH=amd64 go build $(GO_INSTALL_OPTS) -i -v -o .release/assh_netbsd_amd64 .
GOOS=netbsd GOARCH=386 go build $(GO_INSTALL_OPTS) -i -v -o .release/assh_netbsd_386 .
Expand Down
59 changes: 36 additions & 23 deletions contrib/completion/bash_autocomplete

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading