Skip to content

Commit

Permalink
ci: add goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
mozillazg committed Apr 27, 2024
1 parent eee278d commit 7982828
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: goreleaser

on:
push:
tags:
- v*

jobs:
goreleaser:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21.0'
env:
GOPATH: ${{ env.HOME }}

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GOPATH: ${{ env.HOME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,20 @@ jobs:
- name: Test
run: make test


releaser-test:
runs-on: ubuntu-latest
steps:
- 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@v5
with:
distribution: goreleaser
version: latest
args: release --snapshot --clean --skip=publish --verbose
31 changes: 31 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
before:
hooks:
- sudo apt-get install -y gcc flex bison make libelf-dev
- make libpcap

builds:
- id: ptcpdump
binary: ptcpdump
env:
- CGO_ENABLED=1
- CGO_CFLAGS='-I./output/libpcap/include'
- CGO_LDFLAGS='-L./output/libpcap/lib -lelf -lz ./output/libpcap/lib/libpcap.a'
flags:
- -tags=static
ldflags:
- -extldflags "-static"
- -X github.com/mozillazg/ptcpdump/internal.Version={{.Version}}
- -X github.com/mozillazg/ptcpdump/internal.GitCommit={{.Commit}}
goos:
- linux
goarch:
- amd64

checksum:
name_template: 'checksums.txt'

release:
prerelease: auto

snapshot:
name_template: "{{ .Tag }}-next"

0 comments on commit 7982828

Please sign in to comment.