refactor: reorganize project in order to include automation #1
3 changed files with 48 additions and 8 deletions
|
@ -24,10 +24,6 @@ jobs:
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: ${{ steps.go-version.outputs.version }}
|
go-version: ${{ steps.go-version.outputs.version }}
|
||||||
-
|
|
||||||
name: Build for host architecture
|
|
||||||
run: |
|
|
||||||
make build
|
|
||||||
-
|
-
|
||||||
name: Run tests
|
name: Run tests
|
||||||
run: |
|
run: |
|
||||||
|
|
41
.forgejo/workflows/release.yaml
Normal file
41
.forgejo/workflows/release.yaml
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
name: Build and upload project release
|
||||||
|
|
||||||
|
on:
|
||||||
|
create:
|
||||||
|
tags: [ v* ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
release:
|
||||||
|
runs-on: debian-12
|
||||||
|
if: startsWith(github.ref, 'refs/tags/v')
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout repo
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
-
|
||||||
|
name: Extract Go version
|
||||||
|
id: go-version
|
||||||
|
run: |
|
||||||
|
sed '/^go /!d; s/go /version=/' go.mod >>"$GITHUB_OUTPUT"
|
||||||
|
-
|
||||||
|
name: Setup Go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: ${{ steps.go-version.outputs.version }}
|
||||||
|
-
|
||||||
|
name: Run tests
|
||||||
|
run: |
|
||||||
|
make test
|
||||||
|
-
|
||||||
|
name: Build binaries
|
||||||
|
run: |
|
||||||
|
make dist-all
|
||||||
|
-
|
||||||
|
name: Upload release
|
||||||
|
uses: actions/forgejo-release@v1
|
||||||
|
with:
|
||||||
|
direction: upload
|
||||||
|
name: binaries
|
||||||
|
release-dir: dist/release
|
||||||
|
token: ${{ secrets.FORGEJO_TOKEN }}
|
11
Makefile
11
Makefile
|
@ -71,13 +71,16 @@ dist: dist-target
|
||||||
|
|
||||||
.PHONY: dist-all
|
.PHONY: dist-all
|
||||||
dist-all: dist-source
|
dist-all: dist-source
|
||||||
@for target in $(TARGETS); do \
|
@set -eu -o pipefail; \
|
||||||
|
for target in $(TARGETS); do \
|
||||||
$(MAKE) dist-target GOOS=`echo $$target | cut -d / -f 1` GOARCH=`echo $$target | cut -d / -f 2`; \
|
$(MAKE) dist-target GOOS=`echo $$target | cut -d / -f 1` GOARCH=`echo $$target | cut -d / -f 2`; \
|
||||||
done
|
done; \
|
||||||
|
mkdir -p $(DISTDIR)/release; \
|
||||||
|
mv $(DISTDIR)/$(BINNAME)-$(BINARY_VERSION)-*.tar.xz $(DISTDIR)/release
|
||||||
|
|
||||||
.PHONY: dist-source
|
.PHONY: dist-source
|
||||||
dist-source:
|
dist-source:
|
||||||
@set -e; \
|
@set -eu -o pipefail; \
|
||||||
if [ -z "$(BINARY_VERSION)" ]; then \
|
if [ -z "$(BINARY_VERSION)" ]; then \
|
||||||
echo "No version set"; \
|
echo "No version set"; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
|
@ -98,7 +101,7 @@ dist-source:
|
||||||
|
|
||||||
.PHONY: dist-target
|
.PHONY: dist-target
|
||||||
dist-target: build-target
|
dist-target: build-target
|
||||||
@set -e; \
|
@set -eu -o pipefail; \
|
||||||
if [ -z "$(BINARY_VERSION)" ]; then \
|
if [ -z "$(BINARY_VERSION)" ]; then \
|
||||||
echo "No version set"; \
|
echo "No version set"; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
|
|
Loading…
Reference in a new issue