mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-24 23:16:41 +00:00
70 lines
1.8 KiB
YAML
70 lines
1.8 KiB
YAML
---
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
# Job Name
|
|
# -------------------------------------------------------------------------------------------------
|
|
name: Docs
|
|
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
# When to run
|
|
# -------------------------------------------------------------------------------------------------
|
|
on:
|
|
# Runs on Pull Requests
|
|
pull_request:
|
|
|
|
# Runs on master Branch and Tags
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
# What to run
|
|
# -------------------------------------------------------------------------------------------------
|
|
jobs:
|
|
docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
- build
|
|
- linkcheck
|
|
- linkcheck2
|
|
|
|
name: "[Docs ${{ matrix.target }}]"
|
|
steps:
|
|
|
|
# ------------------------------------------------------------
|
|
# Checkout repository
|
|
# ------------------------------------------------------------
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Check documentation
|
|
shell: bash
|
|
run: |
|
|
retry() {
|
|
for n in $(seq ${RETRIES}); do
|
|
echo "[${n}/${RETRIES}] ${*}";
|
|
if eval "${*}"; then
|
|
echo "[SUCC] ${n}/${RETRIES}";
|
|
return 0;
|
|
fi;
|
|
sleep ${PAUSE};
|
|
echo "[FAIL] ${n}/${RETRIES}";
|
|
done;
|
|
return 1;
|
|
}
|
|
|
|
cd docs
|
|
retry make ${TARGET}
|
|
env:
|
|
TARGET: ${{ matrix.target }}
|
|
RETRIES: 20
|
|
PAUSE: 10
|