Skip to content

Commit

Permalink
Merge pull request #402 from moul/dev/moul/maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Feb 18, 2021
2 parents f1a5400 + bab7d76 commit 281772c
Show file tree
Hide file tree
Showing 8 changed files with 208 additions and 214 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
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
@@ -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
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
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.

0 comments on commit 281772c

Please sign in to comment.