2020-01-12 15:09:50 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-06-01 20:10:40 +00:00
|
|
|
name: test
|
2020-01-12 15:09:50 +00:00
|
|
|
|
2020-01-12 15:13:37 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2020-01-12 15:09:50 +00:00
|
|
|
steps:
|
|
|
|
- name: assets
|
2020-05-31 17:29:32 +00:00
|
|
|
image: node:lts
|
2020-01-12 15:09:50 +00:00
|
|
|
commands:
|
2021-01-06 17:10:56 +00:00
|
|
|
- npm install > /dev/null
|
|
|
|
- npx gulp default
|
2020-05-31 16:20:39 +00:00
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
2020-05-31 17:29:32 +00:00
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
2020-01-12 15:09:50 +00:00
|
|
|
|
2020-06-01 20:10:40 +00:00
|
|
|
- name: testbuild
|
2021-05-06 20:42:10 +00:00
|
|
|
image: thegeeklab/hugo:0.83.1
|
2020-01-12 15:09:50 +00:00
|
|
|
commands:
|
2020-06-01 20:10:40 +00:00
|
|
|
- mkdir exampleSite/themes/ && ln -s $(pwd)/ exampleSite/themes/hugo-geekdoc
|
2021-05-06 20:42:10 +00:00
|
|
|
- hugo -s exampleSite/ -b http://localhost/
|
2020-05-31 16:20:39 +00:00
|
|
|
|
|
|
|
- name: html-validation
|
2020-09-27 20:21:29 +00:00
|
|
|
image: thegeeklab/vnu
|
2020-05-31 16:20:39 +00:00
|
|
|
commands:
|
2021-07-01 07:05:26 +00:00
|
|
|
- vnu --skip-non-html --also-check-css --errors-only --filterfile .vnuignore exampleSite/public
|
2020-05-31 16:20:39 +00:00
|
|
|
|
2020-06-01 14:04:18 +00:00
|
|
|
- name: link-validation
|
2020-09-27 20:21:29 +00:00
|
|
|
image: thegeeklab/link-validator
|
2020-05-31 17:29:32 +00:00
|
|
|
commands:
|
2021-04-11 13:11:59 +00:00
|
|
|
- link-validator -ro --exclude "https://github.com/thegeeklab/hugo-geekdoc/edit/main/*"
|
2020-05-31 20:07:55 +00:00
|
|
|
environment:
|
2020-06-01 20:10:40 +00:00
|
|
|
LINK_VALIDATOR_BASE_DIR: exampleSite/public
|
2020-05-31 17:29:32 +00:00
|
|
|
|
2020-06-01 22:10:51 +00:00
|
|
|
- name: page-validation
|
2020-09-27 20:21:29 +00:00
|
|
|
image: thegeeklab/lhci
|
2020-06-01 13:59:02 +00:00
|
|
|
commands:
|
|
|
|
- lhci autorun
|
2020-07-17 07:15:14 +00:00
|
|
|
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}
|
2020-07-17 08:34:52 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- failure
|
|
|
|
- success
|
2020-06-01 13:59:02 +00:00
|
|
|
|
2020-11-09 21:06:06 +00:00
|
|
|
- name: page-validation-link
|
|
|
|
image: thegeeklab/drone-github-comment
|
|
|
|
settings:
|
|
|
|
api_key:
|
|
|
|
from_secret: github_token
|
|
|
|
key: pr-${DRONE_PULL_REQUEST}
|
|
|
|
message: lhci_reports/dist/summary.md
|
2021-07-28 20:09:05 +00:00
|
|
|
skip_missing: true
|
2020-11-09 21:06:06 +00:00
|
|
|
update: true
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
2021-05-21 13:51:19 +00:00
|
|
|
status:
|
|
|
|
- failure
|
|
|
|
- success
|
2020-11-09 21:06:06 +00:00
|
|
|
|
2020-06-01 20:10:40 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2021-04-11 13:11:59 +00:00
|
|
|
- refs/heads/main
|
2020-06-01 20:10:40 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: build
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: assets
|
|
|
|
image: node:lts
|
|
|
|
commands:
|
2021-01-06 17:10:56 +00:00
|
|
|
- npm install > /dev/null
|
|
|
|
- npx gulp default
|
2020-06-01 20:10:40 +00:00
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
|
|
|
|
|
|
|
- name: package
|
2021-05-23 16:19:46 +00:00
|
|
|
image: thegeeklab/alpine-tools
|
2020-01-12 15:09:50 +00:00
|
|
|
commands:
|
|
|
|
- mkdir dist/
|
2020-02-17 08:08:55 +00:00
|
|
|
- echo "${DRONE_TAG:-latest}" > VERSION
|
2020-06-01 13:59:02 +00:00
|
|
|
- tar -zcvf dist/hugo-geekdoc.tar.gz -X .tarignore .
|
2020-01-12 15:09:50 +00:00
|
|
|
|
|
|
|
- name: checksum
|
2021-05-23 16:19:46 +00:00
|
|
|
image: thegeeklab/alpine-tools
|
2020-01-12 15:09:50 +00:00
|
|
|
commands:
|
2020-01-12 15:13:37 +00:00
|
|
|
- cd dist/ && sha256sum * > ../sha256sum.txt
|
2020-01-12 15:09:50 +00:00
|
|
|
|
2021-02-11 20:25:43 +00: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-01 20:10:40 +00:00
|
|
|
- name: release
|
2020-01-12 15:09:50 +00:00
|
|
|
image: plugins/github-release
|
|
|
|
settings:
|
|
|
|
api_key:
|
|
|
|
from_secret: github_token
|
|
|
|
files:
|
2020-01-12 15:13:37 +00:00
|
|
|
- dist/*
|
2020-01-12 15:09:50 +00:00
|
|
|
- sha256sum.txt
|
|
|
|
note: CHANGELOG.md
|
|
|
|
overwrite: true
|
2020-01-12 15:13:37 +00:00
|
|
|
title: ${DRONE_TAG}
|
2021-02-11 20:25:43 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/tags/**
|
2020-01-12 15:09:50 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2021-04-11 13:11:59 +00:00
|
|
|
- refs/heads/main
|
2020-01-12 15:09:50 +00:00
|
|
|
- refs/tags/**
|
2021-02-11 20:25:43 +00:00
|
|
|
- refs/pull/**
|
2020-06-01 20:10:40 +00:00
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- test
|
2020-01-12 15:13:37 +00:00
|
|
|
|
2020-01-12 15:44:10 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: docs
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2020-05-26 20:29:15 +00:00
|
|
|
concurrency:
|
|
|
|
limit: 1
|
|
|
|
|
2020-01-12 15:44:10 +00:00
|
|
|
steps:
|
2020-06-01 22:01:49 +00:00
|
|
|
- name: markdownlint
|
2020-11-01 21:11:49 +00:00
|
|
|
image: thegeeklab/markdownlint-cli
|
2020-06-01 22:01:49 +00:00
|
|
|
commands:
|
|
|
|
- markdownlint 'exampleSite/content/**/*.md' 'README.md'
|
|
|
|
|
|
|
|
- name: spellcheck
|
|
|
|
image: node:lts-alpine
|
|
|
|
commands:
|
|
|
|
- npm install -g spellchecker-cli
|
2021-02-21 12:50:15 +00:00
|
|
|
- spellchecker --files 'exampleSite/content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls frontmatter --frontmatter-keys title --no-suggestions
|
2020-06-01 22:01:49 +00:00
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
|
|
|
|
2020-01-12 15:44:10 +00:00
|
|
|
- name: assets
|
2021-05-23 16:30:02 +00:00
|
|
|
image: node:lts
|
2020-01-12 15:44:10 +00:00
|
|
|
commands:
|
2021-05-23 16:19:46 +00:00
|
|
|
- npm install > /dev/null
|
|
|
|
- npx gulp svg-sprite-list
|
2020-01-12 15:44:10 +00:00
|
|
|
- mkdir -p exampleSite/themes/hugo-geekdoc/
|
2020-09-27 20:21:29 +00:00
|
|
|
- curl -sSL https://github.com/thegeeklab/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C exampleSite/themes/hugo-geekdoc/ --strip-components=1
|
2021-03-02 21:45:05 +00:00
|
|
|
when:
|
|
|
|
ref:
|
2021-04-11 13:11:59 +00:00
|
|
|
- refs/heads/main
|
2021-03-02 21:45:05 +00:00
|
|
|
- refs/tags/**
|
|
|
|
|
2021-04-11 13:11:59 +00:00
|
|
|
- name: assets-main
|
2021-03-02 21:45:05 +00:00
|
|
|
image: node:lts
|
|
|
|
commands:
|
|
|
|
- npm install > /dev/null
|
|
|
|
- npx gulp default
|
2021-05-23 16:19:46 +00:00
|
|
|
- npx gulp svg-sprite-list
|
2021-03-02 21:45:05 +00:00
|
|
|
- mkdir exampleSite/themes/ && ln -s $(pwd)/ exampleSite/themes/hugo-geekdoc
|
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
2020-01-12 15:44:10 +00:00
|
|
|
|
2020-05-31 16:20:39 +00:00
|
|
|
- name: build
|
2021-05-06 20:42:10 +00:00
|
|
|
image: thegeeklab/hugo:0.83.1
|
2020-01-12 15:44:10 +00:00
|
|
|
commands:
|
2021-05-06 20:42:10 +00:00
|
|
|
- hugo -s exampleSite/
|
2020-01-12 15:44:10 +00:00
|
|
|
|
2020-06-02 17:43:52 +00: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 16:58:34 +00:00
|
|
|
- name: publish
|
2020-05-26 20:29:15 +00:00
|
|
|
image: plugins/s3-sync
|
2020-01-12 16:58:34 +00:00
|
|
|
settings:
|
2020-05-26 20:29:15 +00: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 20:44:33 +00:00
|
|
|
source: exampleSite/public/
|
|
|
|
strip_prefix: exampleSite/public/
|
2020-06-01 22:01:49 +00:00
|
|
|
when:
|
|
|
|
ref:
|
2021-04-11 13:11:59 +00:00
|
|
|
- refs/heads/main
|
2020-06-01 22:01:49 +00:00
|
|
|
- refs/tags/**
|
2020-01-12 16:58:34 +00:00
|
|
|
|
2020-01-12 15:44:10 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2021-04-11 13:11:59 +00:00
|
|
|
- refs/heads/main
|
2020-01-13 23:34:33 +00:00
|
|
|
- refs/tags/**
|
2020-06-01 22:01:49 +00:00
|
|
|
- refs/pull/**
|
2020-01-12 15:44:10 +00:00
|
|
|
|
2020-01-12 15:47:09 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
2020-01-12 16:29:21 +00: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:
|
2021-04-11 13:11:59 +00:00
|
|
|
- refs/heads/main
|
2020-01-12 16:29:21 +00:00
|
|
|
- refs/tags/**
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
2020-06-01 20:10:40 +00:00
|
|
|
- test
|
2020-01-12 16:29:21 +00:00
|
|
|
- build
|
|
|
|
- docs
|
|
|
|
|
2020-01-12 15:13:37 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2021-07-28 20:09:05 +00:00
|
|
|
hmac: 7c75520ec754a947c22c7727ac905b3798298c0ea174023fb5d7f99426eee0ac
|
2020-01-12 15:13:37 +00:00
|
|
|
|
|
|
|
...
|