Skip to content

Commit

Permalink
update github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnywong committed Jul 5, 2024
1 parent d848284 commit d2d7209
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 11 deletions.
47 changes: 44 additions & 3 deletions .github/workflows/gotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- name: Checkout trzsz-ssh
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: go test
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Checkout trzsz-ssh
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: go test
Expand All @@ -29,8 +29,49 @@ jobs:
- name: Checkout trzsz-ssh
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: go test
run: go test -v -count=1 ./tssh
go-release-snapshot:
runs-on: ubuntu-latest
steps:
- name: Checkout trzsz-ssh
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: "~> v1"
args: release --clean --snapshot --skip=publish
test-win7-go1_20:
runs-on: ubuntu-latest
steps:
- name: Checkout trzsz-ssh
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.20"
- name: Checkout tsshd
run: |
git clone --depth 1 https://github.com/trzsz/tsshd.git
cd tsshd
sed -i 's/go 1\.21/go 1.20/g' go.mod
go get github.com/xtaci/kcp-go/[email protected] github.com/quic-go/[email protected]
go mod tidy
cd ..
- name: Build trzsz-ssh
run: |
sed -i 's/go 1\.21/go 1.20/g' go.mod
go mod edit -replace=github.com/trzsz/tsshd=./tsshd
go get github.com/xtaci/kcp-go/[email protected] github.com/quic-go/[email protected]
go mod tidy
go test -v -tags win7 -count=1 ./tssh
GOOS=windows GOARCH=386 go build -tags win7 -o tssh_win7_i386/ ./cmd/tssh/
GOOS=windows GOARCH=amd64 go build -tags win7 -o tssh_win7_x86_64/ ./cmd/tssh/
47 changes: 39 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,19 @@ jobs:
- name: Checkout trzsz-ssh
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
version: "~> v1"
args: release --clean --skip=publish
- name: Upload Release Assets
uses: trzsz/upload-release-assets@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: softprops/action-gh-release@v2
with:
release_id: ${{ github.event.release.id }}
assets_path: |
files: |
dist/*.tar.gz
dist/*.zip
dist/*.rpm
Expand All @@ -37,3 +34,37 @@ jobs:
for filename in dist/tssh*.rpm; do
curl -F package=@"$filename" https://{$FURY_TOKEN}@push.fury.io/trzsz/
done
release-win7-go1_20:
name: Build win7 release with go1.20
runs-on: ubuntu-latest
steps:
- name: Checkout trzsz-ssh
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.20"
- name: Checkout tsshd
run: |
git clone --depth 1 https://github.com/trzsz/tsshd.git
cd tsshd
sed -i 's/go 1\.21/go 1.20/g' go.mod
go get github.com/xtaci/kcp-go/[email protected] github.com/quic-go/[email protected]
go mod tidy
cd ..
- name: Build trzsz-ssh
run: |
sed -i 's/go 1\.21/go 1.20/g' go.mod
go mod edit -replace=github.com/trzsz/tsshd=./tsshd
go get github.com/xtaci/kcp-go/[email protected] github.com/quic-go/[email protected]
go mod tidy
version=${GITHUB_REF/refs\/tags\/v/}
GOOS=windows GOARCH=386 go build -tags win7 -ldflags "-s -w" -o tssh_${version}_win7_i386/ ./cmd/tssh/
zip -r tssh_${version}_win7_i386.zip tssh_${version}_win7_i386
GOOS=windows GOARCH=amd64 go build -tags win7 -ldflags "-s -w" -o tssh_${version}_win7_x86_64/ ./cmd/tssh/
zip -r tssh_${version}_win7_x86_64.zip tssh_${version}_win7_x86_64
sha256sum ./*.zip
- name: Upload Release Assets
uses: softprops/action-gh-release@v2
with:
files: ./*.zip

0 comments on commit d2d7209

Please sign in to comment.