-
Notifications
You must be signed in to change notification settings - Fork 80
113 lines (96 loc) · 3.26 KB
/
build-docs.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: docs
on:
push:
branches:
- master
schedule:
- cron: "00 12 * * 0" # Every Sunday noon (preserve the cache folders)
workflow_dispatch:
env:
PYTHON_VERSION: "3.11"
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
git fetch --prune --unshallow --tags
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Download extra data from private repository
uses: actions/checkout@v4
with:
repository: xoolive/traffic_data
token: ${{ secrets.PRIVATE_TOKEN }}
persist-credentials: false
path: ./traffic_data
- name: Create LFS file list (private repository)
working-directory: ./traffic_data
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
shell: bash
- name: Restore LFS cache (private repository)
uses: actions/cache@v4
id: lfs-cache
with:
path: ./traffic_data/.git/lfs
key: lfs-${{ hashFiles('./traffic_data/.lfs-assets-id') }}-v1
- name: Git LFS Pull (private repository)
working-directory: ./traffic_data
run: |
git remote set-url origin https://xoolive:${{ secrets.PRIVATE_TOKEN }}@github.com/xoolive/traffic_data.git
git lfs pull
unzip ENV_PostOPS_AIRAC_2111_04NOV2021_With_Airspace_Closure.zip -d airac_2111
shell: bash
- name: Cache folder for traffic
uses: actions/cache@v4
id: cache-folder
with:
path: |
~/.cache/traffic/
key: traffic-${{ hashFiles('uv.lock') }}
- name: Cache folder for documentation
uses: actions/cache@v4
id: docs-folder
with:
path: |
docs/_build/
key: docs-${{ hashFiles('uv.lock') }}
- name: Ubuntu system dependencies
run: |
sudo apt update
sudo apt install -y npm fonts-ubuntu
- name: npm dependencies
run: |
npm install vega-lite vega-cli canvas # necessary dependency for altair-save
- name: Install the project
run: |
uv sync --dev --all-extras
- name: Build pages
env:
LD_LIBRARY_PATH: /usr/local/lib
CARTES_CACHE: ./cache
OPENSKY_CACHE: ./cache
OPENSKY_CACHE_NO_EXPIRE:
TRAFFIC_NM_PATH: ${{ github.workspace }}/traffic_data/airac_2111
TRAFFIC_TQDM_STYLE: silent
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# This downloads the cache for cartes atlas
uv run python -c "from cartes.atlas import default, world_atlas"
# This downloads files to have in cache first
uv run traffic cache --fill
# Run the documentation
cd docs && uv run make html
- name: Deploy pages
uses: peaceiris/actions-gh-pages@v4
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: traffic-viz/traffic-viz.github.io
publish_branch: master
publish_dir: docs/_build/html