hugo-theme-hilfe/.drone.yml

221 lines
4.1 KiB
YAML
Raw Normal View History

2020-01-12 16:09:50 +01:00
---
kind: pipeline
2020-06-01 22:10:40 +02:00
name: test
2020-01-12 16:09:50 +01:00
2020-01-12 16:13:37 +01:00
platform:
os: linux
arch: amd64
2020-01-12 16:09:50 +01:00
steps:
- name: assets
2020-05-31 19:29:32 +02:00
image: node:lts
2020-01-12 16:09:50 +01:00
commands:
2020-05-31 18:20:39 +02:00
- npm install -g gulp
- npm install
2020-01-12 16:09:50 +01:00
- gulp default
2020-05-31 18:20:39 +02:00
environment:
FORCE_COLOR: true
2020-05-31 19:29:32 +02:00
NPM_CONFIG_LOGLEVEL: error
2020-01-12 16:09:50 +01:00
2020-06-01 22:10:40 +02:00
- name: testbuild
2020-06-01 22:05:15 +02:00
image: klakegg/hugo:0.72.0-ext-alpine
2020-01-12 16:09:50 +01:00
commands:
2020-06-01 22:10:40 +02:00
- mkdir exampleSite/themes/ && ln -s $(pwd)/ exampleSite/themes/hugo-geekdoc
- hugo-official -s exampleSite/ -b http://localhost/
2020-05-31 18:20:39 +02:00
- name: html-validation
image: validator/validator
commands:
- vnu --skip-non-html --also-check-css --errors-only exampleSite/public
2020-06-01 16:04:18 +02:00
- name: link-validation
2020-05-31 19:29:32 +02:00
image: xoxys/link-validator
commands:
- link-validator -ro
2020-05-31 22:07:55 +02:00
environment:
2020-06-01 22:10:40 +02:00
LINK_VALIDATOR_BASE_DIR: exampleSite/public
2020-05-31 19:29:32 +02:00
2020-06-02 00:10:51 +02:00
- name: page-validation
2020-06-01 15:59:02 +02:00
image: patrickhulce/lhci-client
user: root
commands:
- lhci autorun
2020-06-01 22:10:40 +02:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
---
kind: pipeline
name: build
platform:
os: linux
arch: amd64
steps:
- name: assets
image: node:lts
commands:
- npm install -g gulp
- npm install
- gulp default
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: package
2020-01-12 16:09:50 +01:00
image: alpine
commands:
- mkdir dist/
2020-02-17 09:08:55 +01:00
- echo "${DRONE_TAG:-latest}" > VERSION
2020-06-01 15:59:02 +02:00
- tar -zcvf dist/hugo-geekdoc.tar.gz -X .tarignore .
2020-01-12 16:09:50 +01:00
- name: checksum
image: alpine
commands:
2020-01-12 16:13:37 +01:00
- cd dist/ && sha256sum * > ../sha256sum.txt
2020-01-12 16:09:50 +01:00
2020-06-01 22:10:40 +02:00
- name: release
2020-01-12 16:09:50 +01:00
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
2020-01-12 16:13:37 +01:00
- dist/*
2020-01-12 16:09:50 +01:00
- sha256sum.txt
note: CHANGELOG.md
overwrite: true
2020-01-12 16:13:37 +01:00
title: ${DRONE_TAG}
2020-01-12 16:09:50 +01:00
trigger:
ref:
- refs/tags/**
2020-06-01 22:10:40 +02:00
depends_on:
- test
2020-01-12 16:13:37 +01:00
2020-01-12 16:44:10 +01:00
---
kind: pipeline
name: docs
platform:
os: linux
arch: amd64
2020-05-26 22:29:15 +02:00
concurrency:
limit: 1
2020-01-12 16:44:10 +01:00
steps:
2020-06-02 00:01:49 +02:00
- name: markdownlint
image: node:lts-alpine
commands:
- npm install -g markdownlint-cli
- markdownlint 'exampleSite/content/**/*.md' 'README.md'
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: spellcheck
image: node:lts-alpine
commands:
- npm install -g spellchecker-cli
- spellchecker --files 'exampleSite/content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
2020-01-12 16:44:10 +01:00
- name: assets
image: byrnedo/alpine-curl
2020-01-12 16:44:10 +01:00
commands:
- mkdir -p exampleSite/themes/hugo-geekdoc/
2020-06-02 00:10:51 +02:00
- curl -sSL https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C exampleSite/themes/hugo-geekdoc/ --strip-components=1
2020-01-12 16:44:10 +01:00
2020-05-31 18:20:39 +02:00
- name: build
2020-06-01 22:05:15 +02:00
image: klakegg/hugo:0.72.0-ext-alpine
2020-01-12 16:44:10 +01:00
commands:
2020-06-01 22:10:40 +02:00
- hugo-official -s exampleSite/
2020-01-12 16:44:10 +01: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-01-12 17:58:34 +01:00
- name: publish
2020-05-26 22:29:15 +02:00
image: plugins/s3-sync
2020-01-12 17:58:34 +01:00
settings:
2020-05-26 22:29:15 +02:00
access_key:
from_secret: s3_access_key
bucket: geekdocs-root
delete: true
endpoint: https://sp.rknet.org
path_style: true
secret_key:
from_secret: s3_secret_access_key
2020-05-26 22:44:33 +02:00
source: exampleSite/public/
strip_prefix: exampleSite/public/
2020-06-02 00:01:49 +02:00
when:
ref:
- refs/heads/master
- refs/tags/**
2020-01-12 17:58:34 +01:00
2020-01-12 16:44:10 +01:00
trigger:
ref:
2020-05-26 22:37:56 +02:00
- refs/heads/master
2020-01-14 00:34:33 +01:00
- refs/tags/**
2020-06-02 00:01:49 +02:00
- refs/pull/**
2020-01-12 16:44:10 +01:00
depends_on:
- build
2020-01-12 17:29:21 +01:00
---
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/master
- refs/tags/**
status:
- success
- failure
depends_on:
2020-06-01 22:10:40 +02:00
- test
2020-01-12 17:29:21 +01:00
- build
- docs
2020-01-12 16:13:37 +01:00
---
kind: signature
hmac: 0e4002121787435d22c628f091c8b11ceec1c8a02057436dc9a868c190f91317
2020-01-12 16:13:37 +01:00
...