Skip to content

Commit e201635

Browse files
authored
Merge pull request #896 from cvvergara/fixes-before-release
Fixes before release
2 parents 8098aca + b11feb9 commit e201635

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.github/workflows/linkcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
5353
# if there is a change on the translation
5454
if git diff --name-only HEAD^ HEAD | grep -q "^locale/${{ matrix.language }}" ; then echo "PROCESS=true" >> $GITHUB_ENV; fi
55-
# if the change involves a link
56-
if git diff HEAD^ "locale/${{ matrix.language }}" | grep "http" | grep -q "+" ; then echo "CHK_LINK=true" >> $GITHUB_ENV; fi
55+
# if the change involves a link (TODO eneable when detecting which link is making it stall)
56+
# if git diff HEAD^ "locale/${{ matrix.language }}" | grep "http" | grep -q "+" ; then echo "CHK_LINK=true" >> $GITHUB_ENV; fi
5757
5858
- name: Install python
5959
if: env.PROCESS == 'true' || env.CHK_LINK == 'true'

debian/rules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
%:
88
dh $@ --builddirectory=build
9-
9+
1010
override_dh_auto_configure:
11-
dh_auto_configure -- -DHTML=ON -DFI=ON -DIT=ON -DJA=ON -DES=ON -DFR=ON -DDE=ON -DHU=ON
11+
dh_auto_configure -- -DHTML=ON -DFI=ON -DIT=ON -DJA=ON -DES=ON -DFR=ON -DDE=ON -DHU=ON -DSV=ON
1212

1313
override_dh_auto_build:
1414
dh_auto_build

doc/conf.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,16 @@
202202
# used in overview/mapserver_overview
203203
'http://www.dnr.state.mn.us/maps/compass.html',
204204

205+
# 404
206+
r'https://docs.qgis.org/3.10/en/docs/server_manual/',
207+
r'https://earthdata.nasa.gov/esdis/eso/standards-and-references/directory-interchange-format-dif-standard',
208+
r'https://istsos.org/en/trunk/doc/index.html',
209+
r'https://istsos.org/tutorial/'
210+
211+
212+
# 504
213+
r'https://help.ubuntu.com/',
214+
205215
# intermittent 502 server errors
206216
r'https://demo.pycsw.org',
207217

0 commit comments

Comments
 (0)