bump version to v0.1.7 #108
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Go test tsshd | |
| on: [push, pull_request] | |
| jobs: | |
| go-test-on-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout tsshd | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25" | |
| - name: make test | |
| run: make test | |
| go-test-on-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout tsshd | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25" | |
| - name: make test | |
| run: make test | |
| go-test-on-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout tsshd | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25" | |
| - name: make test | |
| run: make test | |
| go-release-snapshot: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout tsshd | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25" | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v6 | |
| with: | |
| distribution: goreleaser | |
| version: "~> v1" | |
| args: release --clean --snapshot --skip=publish | |
| test-win7-patch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout trzsz-ssh | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| run: | | |
| wget -q https://github.com/thongtech/go-legacy-win7/releases/download/v1.25.7-1/go-legacy-win7-1.25.7-1.linux_amd64.tar.gz -O /tmp/go.tar.gz | |
| tar -C $HOME -xzf /tmp/go.tar.gz | |
| - name: Build tsshd | |
| run: | | |
| export GOROOT=$HOME/go-legacy-win7 | |
| export GOPATH=$HOME/go | |
| export PATH=$GOROOT/bin:$GOPATH/bin:$PATH | |
| which go | |
| go version | |
| make test | |
| GOOS=windows GOARCH=386 go build -o tsshd_win7_i386/ ./cmd/tsshd/ | |
| GOOS=windows GOARCH=amd64 go build -o tsshd_win7_x86_64/ ./cmd/tsshd/ |