-
-
Notifications
You must be signed in to change notification settings - Fork 116
222 lines (194 loc) · 8.22 KB
/
commands.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
name: Processing commands
on:
issue_comment:
types: [created]
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
permissions:
contents: read # to fetch code (actions/checkout)
pull-requests: write # to create comment
runs-on: ubuntu-latest
if: ${{ github.event.issue.pull_request }}
steps:
- uses: actions/github-script@v6
id: get_round
with:
result-encoding: string
script: |
const bodycmt = context.payload.comment.body
if(bodycmt.includes("/echo"))
return 'echo'
if(bodycmt.includes("/builddoc"))
return 'builddoc'
if(bodycmt.includes("/fullbuild"))
return 'fullbuild'
return 'stop'
- name: Emoji-comment
if: steps.get_round.outputs.result != 'stop'
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.reactions.createForIssueComment({
comment_id: ${{ github.event.comment.id }},
owner: context.repo.owner,
repo: context.repo.repo,
content: 'rocket'})
### Common
- uses: actions/github-script@v6
id: get_pr_number
with:
result-encoding: string
script: |
//get pullrequest url
const pr_number = context.payload.issue.number
return pr_number
######
# buildDoc COMMAND
- uses: actions/checkout@v3
name: "checkout branch"
if: steps.get_round.outputs.result == 'builddoc'
with:
repository: ${{ github.repository }}
ref: refs/pull/${{ steps.get_pr_number.outputs.result }}/merge
# token: ${{ secrets.PUSH_TO_DGTAL_GITHUB_IO_TOKEN }}
fetch-depth: 2
- name: install dependencies
if: steps.get_round.outputs.result == 'builddoc'
run: |
set -x
sudo apt-get update && sudo apt-get install -y graphviz ssh doxygen libboost-dev texlive-latex-base
git config --global user.email "[email protected]"
git config --global user.name "DGtal"
- name: configure all
if: steps.get_round.outputs.result == 'builddoc'
run: |
set -ex
mkdir -p build_doc && cd build_doc && cmake .. -DBUILD_EXAMPLES=true -DBUILD_TESTING=true
- name: build doc
id: build-and-check-doc
if: steps.get_round.outputs.result == 'builddoc'
run: |
cd build_doc
wget --no-check-certificate -O "${{runner.workspace}}/DGtal/build_doc/DGtalTools-tagfile" http://dgtal.org/doc/tags/DGtalTools-tagfile;
make -j 2 doc > buildDoc.log
export BUILD_DIR=${{runner.workspace}}/DGtal/build_doc
export SRC_DIR=${{runner.workspace}}/DGtal/
${{runner.workspace}}/DGtal/.github/workflows/checkDoxygenDocumentation.sh
if [ -s /tmp/doxygen.kept.log ]; then
echo "********************************************"
content=`cat /tmp/doxygen.kept.log`
echo $content
delimiter="$(openssl rand -hex 8)"
echo "DoxygenError<<${delimiter}" >> "${GITHUB_OUTPUT}"
cat /tmp/doxygen.kept.log >> "${GITHUB_OUTPUT}"
echo "${delimiter}" >> "${GITHUB_OUTPUT}"
exit 1
fi
- name: Preparing Deploy
if: steps.get_round.outputs.result == 'builddoc'
run: |
mkdir pr${{ steps.get_pr_number.outputs.result }}
mv ${{runner.workspace}}/DGtal/build_doc/html/* pr${{ steps.get_pr_number.outputs.result }}/
git clone --depth 2 https://github.com/DGtal-team/doc-nightly.git
cd doc-nightly
rm -rf pr${{ steps.get_pr_number.outputs.result }}
mv ../pr${{ steps.get_pr_number.outputs.result }} .
- name: Deploy to GitHub Pages
if: steps.get_round.outputs.result == 'builddoc'
uses: JamesIves/[email protected]
with:
token: ${{ secrets.DEPLOYACTION }}
repository-name: DGtal-team/doc-nightly
folder: doc-nightly
branch: master
single-commit: true
clean: true
- name: Post address
uses: actions/github-script@v6
if: ${{ steps.get_round.outputs.result == 'builddoc' && success() && steps.get_round.outputs.result != 'stop' }}
with:
script: |
const tmp_round = "${{ steps.get_round.outputs.result }}";
const id = tmp_round.indexOf(":");
const round = tmp_round.substring(0,id);
const address = "The documentation is built. It will be available, after a few minutes, here: https://dgtal-team.github.io/doc-nightly/pr${{ steps.get_pr_number.outputs.result }}/index.html"
github.rest.issues.createComment({
owner: "DGtal-team",
repo: "DGtal",
issue_number: ${{ github.event.issue.number }},
body: address
});
github.rest.reactions.createForIssueComment({
comment_id: ${{ github.event.comment.id }},
owner: context.repo.owner,
repo: context.repo.repo,
content: 'hooray'})
- name: Post error
env:
ERRORMSG: ${{steps.build-and-check-doc.outputs.DoxygenError}}
uses: actions/github-script@v6
if: ${{ failure() && steps.get_round.outputs.result == 'builddoc' }}
with:
script: |
const error = process.env.ERRORMSG
const msg = "There was an error while building the doc. Check the GitHub actions for debugging.\n"+error
github.rest.issues.createComment({
owner: "DGtal-team",
repo: "DGtal",
issue_number: ${{ github.event.issue.number }},
body: msg
});
# ECHO COMMAND
- name: Echo action
uses: actions/github-script@v6
if: steps.get_round.outputs.result == 'echo'
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const bodycmt = context.payload.comment.body
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: bodycmt
})
###########
# fullbuild COMMAND
- name: install dependencies
if: steps.get_round.outputs.result == 'fullbuild'
run: |
set -x
sudo apt-get update && sudo apt-get install -y libqglviewer-dev-qt5 libboost-dev ninja-build libhdf5-serial-dev libboost-dev libcairo2-dev libgmp-dev libfftw3-dev libinsighttoolkit4-dev
git config --global user.email "[email protected]"
git config --global user.name "DGtal"
- uses: actions/checkout@v3
name: "checkout branch"
if: steps.get_round.outputs.result == 'fullbuild'
with:
repository: ${{ github.repository }}
ref: refs/pull/${{ steps.get_pr_number.outputs.result }}/merge
fetch-depth: 2
- name: Emoji-comment
if: steps.get_round.outputs.result != 'stop'
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.reactions.createForIssueComment({
comment_id: ${{ github.event.comment.id }},
owner: context.repo.owner,
repo: context.repo.repo,
content: 'rocket'})
- name: configure/build/test fullbuild
if: steps.get_round.outputs.result == 'fullbuild'
run: |
cmake -E make_directory ${{runner.workspace}}/build
cmake -S ${{runner.workspace}}/DGtal -B ${{runner.workspace}}/build -DBUILD_EXAMPLES=true -DBUILD_TESTING=true -DDGTAL_RANDOMIZED_TESTING_THRESHOLD=100 -DWITH_OPENMP=true -DWITH_GMP=true -DWITH_FFTW3=true -DWARNING_AS_ERROR=ON -DWITH_HDF5=true -DWITH_QGLVIEWER=true -DWITH_CAIRO=true -DWITH_EIGEN=true -DWITH_ITK=true -DDGTAL_ENABLE_FLOATING_POINT_EXCEPTIONS=true -G Ninja
cd ${{runner.workspace}}/build
cmake --build .
export TESTBLACKLIST="(testLinearStructure)"
ctest -E $TESTBLACKLIST
###########