You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Build documentation of packages which we might want to reference
53
+
run: |
54
+
# keep this in sync with `dev/.release`
55
+
if [ -d "CAP_project/CAP" ]; then make -C "CAP_project/CAP" doc; fi
56
+
if [ -d "CAP_project/CompilerForCAP" ]; then make -C "CAP_project/CompilerForCAP" doc; fi
57
+
if [ -d "CAP_project/MonoidalCategories" ]; then make -C "CAP_project/MonoidalCategories" doc; fi
58
+
if [ -d "CAP_project/CartesianCategories" ]; then make -C "CAP_project/CartesianCategories" doc; fi
59
+
if [ -d "CAP_project/AdditiveClosuresForCAP" ]; then make -C "CAP_project/AdditiveClosuresForCAP" doc; fi
60
+
if [ -d "CAP_project/FreydCategoriesForCAP" ]; then make -C "CAP_project/FreydCategoriesForCAP" doc; fi
61
+
if [ -d "HigherHomologicalAlgebra/ToolsForHigherHomologicalAlgebra" ]; then make -C "HigherHomologicalAlgebra/ToolsForHigherHomologicalAlgebra" doc; fi
62
+
if [ -d "homalg_project/homalg" ]; then make -C "homalg_project/homalg" doc; fi
63
+
if [ -d "homalg_project/Modules" ]; then make -C "homalg_project/Modules" doc; fi
64
+
if [ -d "CategoricalTowers/ToolsForCategoricalTowers" ]; then make -C "CategoricalTowers/ToolsForCategoricalTowers" doc; fi
65
+
if [ -d "CategoricalTowers/Toposes" ]; then make -C "CategoricalTowers/Toposes" doc; fi
66
+
- name: Test Blocks
67
+
run: |
68
+
make -C Blocks --trace -j $(nproc) --output-sync ci-test
69
+
- name: Release package or simulate release
70
+
run: |
71
+
cd Blocks
72
+
python3 dev/process_coverage.py
73
+
git config --global user.name "Bot"
74
+
git config --global user.email "empty"
75
+
CUR_SHA=$(git rev-parse --verify HEAD)
76
+
git fetch origin gh-pages
77
+
git worktree add gh-pages/ gh-pages || (echo "There was an error. Make sure there is a branch named 'gh-pages'. See https://github.com/homalg-project/PackageJanitor#error-there-was-an-error-make-sure-there-is-a-branch-named-gh-pages"; exit 1)
0 commit comments