1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-25 01:32:21 +02:00
goreleaser/Taskfile.yml

281 lines
6.8 KiB
YAML
Raw Permalink Normal View History

# https://taskfile.dev
version: "3"
env:
GO111MODULE: on
GOPROXY: https://proxy.golang.org,direct
tasks:
dev:
desc: Setup git hooks
cmds:
- cp -f scripts/pre-commit.sh .git/hooks/pre-commit
setup:
desc: Install dependencies
cmds:
- go mod tidy
2024-04-01 19:07:38 +02:00
docker:setup:
desc: Setup Docker for multi-arch image builds
cmds:
- docker run --privileged --rm tonistiigi/binfmt --install all
build:
desc: Build the binary
sources:
- ./**/*.go
generates:
- ./goreleaser
cmds:
- go build
test:
desc: Run tests
env:
LC_ALL: C
vars:
TEST_OPTIONS: '{{default "" .TEST_OPTIONS}}'
SOURCE_FILES: '{{default "./..." .SOURCE_FILES}}'
TEST_PATTERN: '{{default "." .TEST_PATTERN}}'
cmds:
- go test {{.TEST_OPTIONS}} -failfast -race -coverpkg=./... -covermode=atomic -coverprofile=coverage.txt {{.SOURCE_FILES}} -run {{.TEST_PATTERN}} -timeout=15m
cover:
desc: Open the cover tool
cmds:
- go tool cover -html=coverage.txt
fmt:
desc: gofumpt all code
cmds:
2021-11-23 19:38:26 +02:00
- gofumpt -w -l .
2021-11-07 04:22:51 +02:00
lint:
desc: Lint the code with golangci-lint
cmds:
2023-11-30 04:11:46 +02:00
- golangci-lint run --config ./.golangci.yaml ./...
2021-11-07 04:22:51 +02:00
ci:
desc: Run all CI steps
cmds:
- task: setup
- task: build
- task: test
default:
desc: Runs the default tasks
cmds:
- task: ci
2024-02-13 04:22:55 +02:00
nix:flake:build:
desc: build goreleaser using the nix flake
cmds:
- task: nix:flake:update-vendor
- nix build .
2024-04-01 20:46:13 +02:00
nix:flake:update:
desc: update flake.lock
cmds:
- nix flake update
generates:
- flake.lock
2024-02-13 04:22:55 +02:00
nix:flake:update-vendor:
desc: update default flake package vendor hash
cmds:
2024-11-07 18:33:54 +02:00
- bash ./scripts/nix-update-flake.sh
2024-02-13 04:22:55 +02:00
generates:
- flake.nix
sources:
- flake.lock
- go.mod
- go.sum
nix:licenses:generate:
desc: Generate nix/licenses.go
cmds:
- ./scripts/gen-nix-licenses.sh
generates:
- ./internal/pipe/nix/licenses.go
schema:generate:
desc: Generate JSONSchema
cmds:
- go run . schema -o ./www/docs/static/schema.json
sources:
- pkg/config/config.go
generates:
- ./www/docs/static/schema.json
schema:validate:
desc: Validate JSONSchema
cmds:
- jv ./www/docs/static/schema.json
sources:
- ./www/docs/static/schema.json
docs:generate:
desc: Generate docs
cmds:
- cp -rf CONTRIBUTING.md www/docs/contributing.md
- cp -rf USERS.md www/docs/users.md
- cp -rf EULA.md www/docs/eula.md
2022-11-08 05:05:36 +02:00
- cp -rf SECURITY.md www/docs/security.md
sources:
- CONTRIBUTING.md
- USERS.md
- EULA.md
2022-11-08 05:05:36 +02:00
- SECURITY.md
generates:
- www/docs/contributing.md
- www/docs/users.md
- www/docs/eula.md
2022-11-08 05:05:36 +02:00
- www/docs/security.md
docs:releases:
desc: Generate releases.json and latest files
cmds:
- ./scripts/get-releases.sh
generates:
- www/docs/static/releases.json
- www/docs/static/releases-pro.json
- www/docs/static/latest
- www/docs/static/latest-pro
docs:imgs:
desc: Download and resize images
cmds:
2021-10-27 03:41:33 +02:00
- wget -O www/docs/static/logo.png https://raw.githubusercontent.com/goreleaser/artwork/master/goreleaserfundo.png
- wget -O www/docs/static/card.png https://raw.githubusercontent.com/goreleaser/artwork/master/twitter-card.png
- wget -O www/docs/static/avatar.png https://github.com/goreleaser.png
- convert www/docs/static/avatar.png -define icon:auto-resize=64,48,32,16 www/docs/static/favicon.ico
- convert www/docs/static/avatar.png -resize x120 www/docs/static/apple-touch-icon.png
docs:serve:
desc: Start documentation server
cmds:
- task: docs:generate
2024-07-10 05:03:07 +02:00
- "mkdocs serve -f www/mkdocs.yml -a 0.0.0.0:8000"
docs:build:
desc: Build docs
cmds:
- task: docs:generate
- "mkdocs build -f www/mkdocs.yml"
docs:test:
desc: Test docs with htmltest
cmds:
- task: docs:build
- "htmltest www/site -c www/htmltest.yml"
release:
desc: Create a new tag
vars:
NEXT:
sh: svu n
cmds:
- git tag -d nightly
- git tag {{.NEXT}}
- echo {{.NEXT}}
- git push origin --tags
2021-11-22 01:34:42 +02:00
goreleaser:test:pkg:
desc: Test a package
cmds:
- docker run --platform linux/{{.Platform}} --rm --workdir /tmp -v $PWD/dist:/tmp {{.Image}} sh -c '{{.Cmd}} && goreleaser --version'
goreleaser:test:rpm:
desc: Tests rpm packages
2021-11-22 01:34:42 +02:00
vars:
rpm: "rpm --nodeps -ivh"
2021-11-22 01:34:42 +02:00
cmds:
- task: goreleaser:test:pkg
vars:
Platform: "386"
2021-11-22 01:34:42 +02:00
Image: centos:centos7
Cmd: "{{.rpm}} goreleaser-*.i386.rpm"
2021-11-22 01:34:42 +02:00
- task: goreleaser:test:pkg
vars:
Platform: "amd64"
2021-11-22 01:34:42 +02:00
Image: fedora
Cmd: "{{.rpm}} goreleaser-*.x86_64.rpm"
2021-11-22 01:34:42 +02:00
- task: goreleaser:test:pkg
vars:
Platform: "arm64"
2021-11-22 01:34:42 +02:00
Image: fedora
Cmd: "{{.rpm}} goreleaser-*.aarch64.rpm"
goreleaser:test:deb:
desc: Tests deb packages
2021-11-22 01:34:42 +02:00
vars:
dpkg: "dpkg --ignore-depends=git -i"
2021-11-22 01:34:42 +02:00
cmds:
- task: goreleaser:test:pkg
vars:
Platform: "amd64"
2021-11-22 01:34:42 +02:00
Image: ubuntu
Cmd: "{{.dpkg}} goreleaser*_amd64.deb"
2021-11-22 01:34:42 +02:00
- task: goreleaser:test:pkg
vars:
Platform: "arm64"
2021-11-22 01:34:42 +02:00
Image: ubuntu
Cmd: "{{.dpkg}} goreleaser*_arm64.deb"
2021-11-22 01:34:42 +02:00
- task: goreleaser:test:pkg
vars:
Platform: "arm/7"
2021-11-22 01:34:42 +02:00
Image: ubuntu
Cmd: "{{.dpkg}} goreleaser*_armhf.deb"
goreleaser:test:apk:
desc: Tests apk packages
2021-11-22 01:34:42 +02:00
vars:
apk: "apk add --allow-untrusted -U"
2021-11-22 01:34:42 +02:00
cmds:
- task: goreleaser:test:pkg
vars:
Platform: "386"
2021-11-22 01:34:42 +02:00
Image: alpine
Cmd: "{{.apk}} goreleaser*_x86.apk"
2021-11-22 01:34:42 +02:00
- task: goreleaser:test:pkg
vars:
Platform: "amd64"
2021-11-22 01:34:42 +02:00
Image: alpine
Cmd: "{{.apk}} goreleaser*_x86_64.apk"
2021-11-22 01:34:42 +02:00
- task: goreleaser:test:pkg
vars:
Platform: "arm64"
2021-11-22 01:34:42 +02:00
Image: alpine
Cmd: "{{.apk}} goreleaser*_aarch64.apk"
2021-11-22 01:34:42 +02:00
- task: goreleaser:test:pkg
vars:
Platform: "arm/7"
2021-11-22 01:34:42 +02:00
Image: alpine
Cmd: "{{.apk}} goreleaser*_armv7.apk"
goreleaser:test:
2021-11-22 01:34:42 +02:00
desc: Test built linux packages
cmds:
- task: goreleaser:test:apk
- task: goreleaser:test:deb
- task: goreleaser:test:rpm
goreleaser:
desc: Run GoReleaser either in snapshot or release mode
deps:
- build
vars:
SNAPSHOT:
sh: 'if [[ $GITHUB_REF != refs/tags/v* ]]; then echo "--snapshot"; fi'
cmds:
- ./goreleaser release --clean --timeout 60m {{.SNAPSHOT}}
2023-08-09 15:12:42 +02:00
nightly:
cmds:
- gh run list --workflow=nightly-oss.yml
- gh workflow run nightly-oss.yml
- sleep 30
- gh run watch