Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b1727eb

Browse files
committedFeb 28, 2025·
Documentation: Remove Checked-in Artifacts.
Remove checked-in artifacts, build documentation artifacts for every build instead. Signed-off-by: Michael Keller <[email protected]>
1 parent 3a89c2d commit b1727eb

12 files changed

+10
-35833
lines changed
 

‎.github/workflows/artifact-links.yml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- Windows
99
- Android
1010
- iOS
11+
- Documentation
1112
types:
1213
- completed
1314

‎.github/workflows/documentation.yml

+8-58
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
1-
name: Documentation
1+
name: Build the Documentation
22

33
on:
4-
push:
5-
branches:
6-
- master
7-
paths:
8-
- Documentation/**
9-
- .github/workflows/**
10-
pull_request:
11-
branches:
12-
- master
13-
paths:
14-
- Documentation/**
15-
- .github/workflows/**
4+
workflow_call:
165

176
jobs:
187
documentation:
@@ -37,53 +26,14 @@ jobs:
3726
nightly-builds-secret: ${{ secrets.NIGHTLY_BUILDS }}
3827

3928
- name: process the documentation
40-
working-directory: Documentation
41-
run: make
29+
env:
30+
OUTPUT_DIR: ../output/documentation
31+
run: |
32+
mkdir -p $OUTPUT_DIR
33+
OUT=../$OUTPUT_DIR make -C Documentation
4234
4335
- name: publish artifacts
4436
uses: actions/upload-artifact@v4
4537
with:
4638
name: Subsurface-Documentation-${{ steps.version_number.outputs.version }}
47-
path: |
48-
Documentation/user-manual*.text
49-
Documentation/user-manual*.html
50-
Documentation/user-manual*.pdf
51-
Documentation/mobile-manual-v3.text
52-
Documentation/mobile-manual-v3.html
53-
Documentation/mobile-manual-v3.pdf
54-
Documentation/images/
55-
Documentation/mobile-images/
56-
57-
check_documentation:
58-
needs: documentation
59-
runs-on: ubuntu-22.04
60-
61-
steps:
62-
- name: checkout sources
63-
uses: actions/checkout@v4
64-
with:
65-
fetch-depth: 0
66-
submodules: recursive
67-
68-
- name: set the version information
69-
id: version_number
70-
uses: ./.github/actions/manage-version
71-
with:
72-
nightly-builds-secret: ${{ secrets.NIGHTLY_BUILDS }}
73-
74-
- name: fetch artifacts
75-
uses: actions/download-artifact@v4
76-
with:
77-
name: Subsurface-Documentation-${{ steps.version_number.outputs.version }}
78-
path: Documentation/
79-
80-
- name: check match with checked in versions
81-
run: |
82-
cd Documentation
83-
for file in user-manual*.html.git mobile-manual-v3.html.git; do
84-
diff -uw <(tail -n +8 $file | head -n -5) <(tail -n +8 ${file%.git} | head -n -5)
85-
if [ $? -ne 0 ] ; then
86-
echo "The html version of the documentation in the repository (\`$file\`) does not match the latest generated html version.\nPlease grab the latest version from the artifacts of the 'Documentation' workflow (\`${file%.git}\`) and commit it to the repository as \`$file\`."
87-
exit 1
88-
fi
89-
done
39+
path: output/documentation

‎Documentation/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# submitting patches to the user manual, only submit the changes to the .txt
88
# file - the maintainer will recreate the .html.git file
99

10-
DOCNAMES = user-manual user-manual_es user-manual_fr user-manual_nl mobile-manual-v3
10+
DOCNAMES = user-manual user-manual_es user-manual_fr user-manual_nl mobile-manual-v3 mobile-manual-v2 mobile-manual_es mobile-manual_fr
1111

1212
HTMLDOCS = $(patsubst %,$(OUT)%.html,$(DOCNAMES))
1313
TEXTDOCS = $(patsubst %,$(OUT)%.text,$(DOCNAMES))

0 commit comments

Comments
 (0)
Please sign in to comment.