hugo-geekblog/.drone.yml

283 lines
5.5 KiB
YAML
Raw Normal View History

2020-06-27 23:07:52 +02:00
---
kind: pipeline
name: test
platform:
os: linux
arch: amd64
steps:
2020-11-08 21:18:22 +01:00
- name: assets
image: node:lts
commands:
2021-01-06 18:06:08 +01:00
- npm install > /dev/null
2021-01-06 17:43:28 +01:00
- npx gulp default
2020-11-08 21:18:22 +01:00
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: testbuild
2021-05-06 22:42:11 +02:00
image: thegeeklab/hugo:0.83.1
2020-11-08 21:18:22 +01:00
commands:
- mkdir exampleSite/themes/ && ln -s $(pwd)/ exampleSite/themes/hugo-geekblog
2021-05-06 22:42:11 +02:00
- hugo -s exampleSite/ -b http://localhost/
2020-11-08 21:18:22 +01:00
- name: html-validation
image: thegeeklab/vnu
commands:
- vnu --skip-non-html --also-check-css --errors-only exampleSite/public
- name: link-validation
image: thegeeklab/link-validator
commands:
- link-validator -ro
environment:
LINK_VALIDATOR_BASE_DIR: exampleSite/public
- name: page-validation
image: thegeeklab/lhci
commands:
- lhci autorun
environment:
LHCI_SERVER_URL: https://drone-artifact.rknet.org/${DRONE_REPO_NAME}/
- name: page-validation-upload
image: plugins/s3
settings:
access_key:
from_secret: s3_access_key
bucket: drone-artifact
endpoint: https://sp.rknet.org
path_style: true
secret_key:
from_secret: s3_secret_access_key
source: lhci_reports/dist/*
strip_prefix: lhci_reports/dist/
target: /${DRONE_REPO_NAME}
when:
status:
- failure
- success
2020-06-27 23:07:52 +02:00
2020-11-08 20:29:07 +01:00
- name: page-validation-link
image: thegeeklab/drone-github-comment
settings:
2020-11-08 21:18:22 +01:00
api_key:
from_secret: github_token
2020-11-08 21:06:23 +01:00
key: pr-${DRONE_PULL_REQUEST}
message: lhci_reports/dist/summary.md
skip_missing: true
2020-11-08 21:06:23 +01:00
update: true
2020-11-08 20:29:07 +01:00
when:
ref:
- refs/pull/**
status:
- failure
- success
2020-11-08 20:29:07 +01:00
2020-06-27 23:07:52 +02:00
trigger:
ref:
- refs/heads/main
2020-06-27 23:07:52 +02:00
- refs/tags/**
- refs/pull/**
---
kind: pipeline
name: build
platform:
os: linux
arch: amd64
steps:
- name: assets
image: node:lts
commands:
2021-01-06 18:06:08 +01:00
- npm install > /dev/null
2021-01-06 17:43:28 +01:00
- npx gulp default
2020-06-27 23:07:52 +02:00
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: package
image: thegeeklab/alpine-tools
2020-06-27 23:07:52 +02:00
commands:
- mkdir dist/
- echo "${DRONE_TAG:-latest}" > VERSION
- tar -zcvf dist/hugo-geekblog.tar.gz -X .tarignore .
- name: checksum
image: thegeeklab/alpine-tools
2020-06-27 23:07:52 +02:00
commands:
- cd dist/ && sha256sum * > ../sha256sum.txt
2021-02-11 21:22:15 +01:00
- name: changelog
image: thegeeklab/git-chglog
commands:
- git fetch -tq
- git-chglog --no-color --no-emoji ${DRONE_TAG:---next-tag unreleased unreleased}
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
2020-06-27 23:07:52 +02:00
- name: release
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
- dist/*
- sha256sum.txt
note: CHANGELOG.md
overwrite: true
title: ${DRONE_TAG}
2021-02-11 21:22:15 +01:00
when:
ref:
- refs/tags/**
2020-06-27 23:07:52 +02:00
trigger:
ref:
- refs/heads/main
2020-06-27 23:07:52 +02:00
- refs/tags/**
2021-02-11 21:22:15 +01:00
- refs/pull/**
2020-06-27 23:07:52 +02:00
depends_on:
- test
---
kind: pipeline
name: docs
platform:
os: linux
arch: amd64
concurrency:
limit: 1
steps:
- name: markdownlint
2020-11-01 22:08:16 +01:00
image: thegeeklab/markdownlint-cli
2020-06-27 23:07:52 +02:00
commands:
- markdownlint 'exampleSite/content/**/*.md' 'README.md'
- name: spellcheck
image: node:lts-alpine
commands:
- npm install -g spellchecker-cli
2020-07-07 18:59:05 +02:00
- spellchecker --files 'exampleSite/content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls frontmatter --frontmatter-keys title tags --no-suggestions
2020-06-27 23:07:52 +02:00
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: assets
image: node:lts
2020-06-27 23:07:52 +02:00
commands:
- npm install > /dev/null
- npx gulp svg-sprite-list
2020-06-27 23:07:52 +02:00
- mkdir -p exampleSite/themes/hugo-geekblog/
2020-09-27 22:14:36 +02:00
- curl -sSL https://github.com/thegeeklab/hugo-geekblog/releases/latest/download/hugo-geekblog.tar.gz | tar -xz -C exampleSite/themes/hugo-geekblog/ --strip-components=1
when:
ref:
- refs/heads/main
- refs/tags/**
- name: assets-main
image: node:lts
commands:
- npm install > /dev/null
- npx gulp default
- npx gulp svg-sprite-list
- mkdir exampleSite/themes/ && ln -s $(pwd)/ exampleSite/themes/hugo-geekblog
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
when:
ref:
- refs/pull/**
2020-06-27 23:07:52 +02:00
- name: build
2021-05-06 22:42:11 +02:00
image: thegeeklab/hugo:0.83.1
2020-06-27 23:07:52 +02:00
commands:
2021-05-06 22:42:11 +02:00
- hugo -s exampleSite/
2020-06-27 23:07:52 +02:00
2020-07-09 17:30:43 +02:00
- name: beautify
image: node:lts-alpine
commands:
- npm install -g js-beautify
- html-beautify -r -f 'exampleSite/public/**/*.html'
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
2020-06-27 23:07:52 +02:00
- name: publish
image: plugins/s3-sync
settings:
access_key:
from_secret: s3_access_key
2020-07-08 08:59:45 +02:00
bucket: geekdocs
2020-06-27 23:07:52 +02:00
delete: true
endpoint: https://sp.rknet.org
path_style: true
secret_key:
from_secret: s3_secret_access_key
source: exampleSite/public/
strip_prefix: exampleSite/public/
target: /${DRONE_REPO_NAME}
when:
ref:
- refs/heads/main
2020-06-27 23:07:52 +02:00
- refs/tags/**
trigger:
ref:
- refs/heads/main
2020-06-27 23:07:52 +02:00
- refs/tags/**
- refs/pull/**
depends_on:
- build
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
- name: matrix
image: plugins/matrix
settings:
homeserver:
from_secret: matrix_homeserver
password:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
username:
from_secret: matrix_username
when:
status:
- success
- failure
trigger:
ref:
- refs/heads/main
2020-06-27 23:07:52 +02:00
- refs/tags/**
status:
- success
- failure
depends_on:
- test
- build
- docs
2020-07-06 20:57:12 +02:00
---
kind: signature
hmac: 85bd2b6e42d2f61ed84dbe55ee810a3bad9757ebdc1ebd8832b05174c62a3448
2020-07-06 20:57:12 +02:00
2020-06-27 23:07:52 +02:00
...