forked from VICE-Team/svn-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 873 Bytes
/
run-doxygen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Run Doxygen
on:
schedule:
# Every day at 04:00 UTC
- cron: '0 4 * * *'
# Allow manually running
workflow_dispatch:
concurrency:
group: Run Doxygen
cancel-in-progress: true
jobs:
mkdoxy:
name: Generate HTML docs
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout Source
uses: actions/checkout@v3
- name: Install Doxygen and dependencies
shell: bash
run: |
sudo apt update
sudo apt install -y doxygen
- name: Run mkdoxy.sh Script
shell: bash
run: |
cd vice/doc
./mkdoxy.sh
- name: Report Failure
env:
IRC_PASS: ${{ secrets.IRC_PASS }}
if: ${{ failure() }}
shell: bash
run: |
./vice/build/github-actions/irc-message.sh "Running Doxygen failed."