2022-11-26 18:42:13 +00:00
|
|
|
// generate .drone.yaml, run:
|
|
|
|
// drone jsonnet --format --stream
|
|
|
|
|
|
|
|
|
2022-11-26 23:45:44 +00:00
|
|
|
local CreateRelease() = {
|
|
|
|
name: 'create release',
|
|
|
|
image: 'plugins/gitea-release',
|
|
|
|
settings: {
|
|
|
|
api_key: { from_secret: 'GITEA_API_KEY' },
|
|
|
|
base_url: 'https://git.unlock-music.dev',
|
|
|
|
files: 'dist/*',
|
|
|
|
checksum: 'sha256',
|
|
|
|
draft: true,
|
|
|
|
title: '${DRONE_TAG}',
|
|
|
|
},
|
|
|
|
};
|
2022-11-26 18:42:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
local StepGoBuild(GOOS, GOARCH) = {
|
2022-11-26 23:45:44 +00:00
|
|
|
local filepath = 'dist/um-%s-%s.tar.gz' % [GOOS, GOARCH],
|
2022-11-26 18:42:13 +00:00
|
|
|
|
2022-11-26 23:47:42 +00:00
|
|
|
name: 'go build %s/%s' % [GOOS, GOARCH],
|
2022-11-26 18:42:13 +00:00
|
|
|
image: 'golang:1.19',
|
|
|
|
environment: {
|
|
|
|
GOOS: GOOS,
|
|
|
|
GOARCH: GOARCH,
|
|
|
|
},
|
|
|
|
commands: [
|
|
|
|
'DIST_DIR=$(mktemp -d)',
|
|
|
|
'go build -v -trimpath -ldflags="-w -s -X main.AppVersion=$(git describe --tags --always)" -o $DIST_DIR ./cmd/um',
|
2022-11-26 23:50:04 +00:00
|
|
|
'mkdir -p dist',
|
2022-11-26 23:45:44 +00:00
|
|
|
'tar cz -f %s -C $DIST_DIR .' % filepath,
|
2022-11-26 18:42:13 +00:00
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
local StepUploadArtifact(GOOS, GOARCH) = {
|
|
|
|
local filename = 'um-%s-%s.tar.gz' % [GOOS, GOARCH],
|
2022-11-26 23:45:44 +00:00
|
|
|
local filepath = 'dist/%s' % filename,
|
2022-11-26 18:42:13 +00:00
|
|
|
local pkgname = '${DRONE_REPO_NAME}-build',
|
|
|
|
|
|
|
|
name: 'upload artifact',
|
|
|
|
image: 'golang:1.19', // reuse golang:1.19 for curl
|
|
|
|
environment: {
|
|
|
|
DRONE_GITEA_SERVER: 'https://git.unlock-music.dev',
|
|
|
|
GITEA_API_KEY: { from_secret: 'GITEA_API_KEY' },
|
|
|
|
},
|
|
|
|
commands: [
|
|
|
|
'curl --fail --include --user "um-release-bot:$GITEA_API_KEY" ' +
|
2022-11-26 23:45:44 +00:00
|
|
|
'--upload-file "%s" ' % filepath +
|
2022-11-26 18:42:13 +00:00
|
|
|
'"$DRONE_GITEA_SERVER/api/packages/${DRONE_REPO_NAMESPACE}/generic/%s/${DRONE_BUILD_NUMBER}/%s"' % [pkgname, filename],
|
2022-11-26 23:45:44 +00:00
|
|
|
'sha256sum %s' % filepath,
|
2022-11-26 18:42:13 +00:00
|
|
|
'echo $DRONE_GITEA_SERVER/${DRONE_REPO_NAMESPACE}/-/packages/generic/%s/${DRONE_BUILD_NUMBER}' % pkgname,
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
local PipelineBuild(GOOS, GOARCH, RUN_TEST) = {
|
|
|
|
name: 'build %s/%s' % [GOOS, GOARCH],
|
|
|
|
kind: 'pipeline',
|
|
|
|
type: 'docker',
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'fetch tags',
|
|
|
|
image: 'alpine/git',
|
|
|
|
commands: ['git fetch --tags'],
|
|
|
|
},
|
|
|
|
] +
|
|
|
|
(
|
|
|
|
if RUN_TEST then [{
|
|
|
|
name: 'go test',
|
|
|
|
image: 'golang:1.19',
|
2022-12-04 17:00:00 +00:00
|
|
|
commands: [
|
|
|
|
'apt-get update && apt-get -y install zlib1g-dev',
|
|
|
|
'go test -v ./...'
|
|
|
|
],
|
2022-11-26 18:42:13 +00:00
|
|
|
}] else []
|
|
|
|
)
|
|
|
|
+
|
|
|
|
[
|
|
|
|
StepGoBuild(GOOS, GOARCH),
|
|
|
|
StepUploadArtifact(GOOS, GOARCH),
|
|
|
|
],
|
|
|
|
trigger: {
|
|
|
|
event: ['push', 'pull_request'],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-11-26 23:45:44 +00:00
|
|
|
local PipelineRelease() = {
|
|
|
|
name: 'release',
|
|
|
|
kind: 'pipeline',
|
|
|
|
type: 'docker',
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'fetch tags',
|
|
|
|
image: 'alpine/git',
|
|
|
|
commands: ['git fetch --tags'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'go test',
|
|
|
|
image: 'golang:1.19',
|
|
|
|
commands: ['go test -v ./...'],
|
|
|
|
},
|
|
|
|
StepGoBuild('linux', 'amd64'),
|
|
|
|
StepGoBuild('linux', 'arm64'),
|
|
|
|
StepGoBuild('linux', '386'),
|
|
|
|
StepGoBuild('windows', 'amd64'),
|
|
|
|
StepGoBuild('windows', '386'),
|
|
|
|
StepGoBuild('darwin', 'amd64'),
|
|
|
|
StepGoBuild('darwin', 'arm64'),
|
|
|
|
CreateRelease(),
|
|
|
|
],
|
|
|
|
trigger: {
|
|
|
|
event: ['tag'],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-11-26 18:42:13 +00:00
|
|
|
[
|
|
|
|
PipelineBuild('linux', 'amd64', true),
|
|
|
|
PipelineBuild('windows', 'amd64', false),
|
|
|
|
PipelineBuild('darwin', 'amd64', false),
|
2022-11-26 23:45:44 +00:00
|
|
|
PipelineRelease(),
|
2022-11-26 18:42:13 +00:00
|
|
|
]
|