-
Notifications
You must be signed in to change notification settings - Fork 86
89 lines (71 loc) · 2.24 KB
/
github-page.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: "Haddock documentation"
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
haddocks:
name: "Haddocks"
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
ghc: ["9.2.7"]
os: [ubuntu-latest]
env:
CABAL_BUILDDIR: "dist-newstyle"
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout ouroboros-network repository
uses: actions/checkout@v3
# we need nix to later build the spec documents
- name: Install Nix
uses: cachix/install-nix-action@v22
- name: Install Haskell
uses: haskell/actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: '3.10.1.0'
- uses: actions/cache@v3
name: Cache cabal store
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
key: cache-haddock-${{ runner.os }}-${{ matrix.ghc }}-v1-${{ hashFiles('cabal-cache.cabal') }}-${{ github.sha }}
restore-keys: cache-haddock-${{ runner.os }}-${{ matrix.ghc }}-v1-${{ hashFiles('cabal-cache.cabal') }}-
- name: Update Hackage index
run: cabal update
- name: Build plan
run: cabal --builddir="$CABAL_BUILDDIR" build --dry-run --enable-tests all
- name: Build Haddock documentation 🔧
run: |
mkdir ./haddocks
./scripts/haddocs.sh ./haddocks
- name: Build documents
run: |
for res in $(nix-build -A network-docs); do
for pdf in $res/*.pdf; do
PDF_DIR=haddocks/pdfs/$(basename $pdf .pdf)
mkdir -p $PDF_DIR
echo '<!DOCTYPE html>' > $PDF_DIR/index.html
echo -n '<!DOCTYPE html><meta http-equiv="refresh" content="0; URL=' >> $PDF_DIR/index.html
echo -n $(basename $pdf) >> $PDF_DIR/index.html
echo '">' >> $PDF_DIR/index.html
cp $pdf $PDF_DIR/
done
done
- name: Upload artifacts
uses: actions/upload-pages-artifact@v1
with:
path: ./haddocks
- name: Deploy 🚀
id: deployment
uses: actions/deploy-pages@v2