-
-
Notifications
You must be signed in to change notification settings - Fork 7
122 lines (104 loc) · 3.73 KB
/
website.yml
File metadata and controls
122 lines (104 loc) · 3.73 KB
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
114
115
116
117
118
119
120
name: Update Website
on:
workflow_dispatch:
env:
postgis: 3
release: Release
os: ubuntu-latest
permissions:
contents: write
jobs:
update-website:
name: Update Website
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'pgRouting' }}
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Extract branch name and commit hash
run: |
branch=${GITHUB_REF#refs/heads/}
echo "BRANCH=$branch" >> $GITHUB_ENV
git_hash=$(git rev-parse --short "$GITHUB_SHA")
echo "GIT_HASH=$git_hash" >> $GITHUB_ENV
- name: Get postgres version
run: |
sudo service postgresql start
pgver=$(psql --version | grep -Po '(?<=psql \(PostgreSQL\) )[^;]+(?=\.\d+ \()')
echo "PGVER=${pgver}" >> $GITHUB_ENV
echo "PGPORT=5432" >> $GITHUB_ENV
- name: Add PostgreSQL APT repository
run: |
sudo apt-get install curl ca-certificates gnupg
curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ \
$(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
- name: Install python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
sudo apt-get update
# vrpRouting dependencies
sudo apt-get install -y \
postgresql-${PGVER} \
postgresql-server-dev-${PGVER}
# documentation dependencies
sudo apt-get install -y graphviz doxygen
pip install -r requirements.txt
- name: Configure
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=${{ env.release }} \
-DWITH_DOC=ON -DDOC_USE_BOOTSTRAP=ON -DBUILD_DOXY=ON ..
- name: Build
run: |
cd build
make doc
make doxy
- name: Initialize mandatory git config
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Update Users Documentation
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [[ "${{ env.BRANCH }}" == "main" ]]; then
FOLDER_NAME="main"
elif [[ "${{ env.BRANCH }}" == "develop" ]]; then
FOLDER_NAME="dev"
fi
git checkout origin/gh-pages
git checkout -b gh-pages
rm -rf ${FOLDER_NAME}
cp -r build/doc/html ${FOLDER_NAME}
git add ${FOLDER_NAME}
git diff-index --quiet HEAD || git commit -m "Update users documentation for ${PROJECT_VERSION} (${{ env.BRANCH }}): commit ${{ env.GIT_HASH }}"
git fetch origin
git rebase origin/gh-pages
git push origin gh-pages
git checkout @{-2}
- name: Update Developers Documentation
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [[ "${{ env.BRANCH }}" == "main" ]]; then
FOLDER_NAME="main"
elif [[ "${{ env.BRANCH }}" == "develop" ]]; then
FOLDER_NAME="dev"
fi
git checkout gh-pages
rm -rf doxy/${FOLDER_NAME}
cp -r build/doxygen/html doxy/${FOLDER_NAME}
git add doxy/${FOLDER_NAME}
git diff-index --quiet HEAD || git commit -m "Update developers documentation for ${PROJECT_VERSION} (${{ env.BRANCH }}): commit ${{ env.GIT_HASH }}"
git fetch origin
git rebase origin/gh-pages
git push origin gh-pages
git checkout @{-1}