Skip to content

Commit 7f59b6c

Browse files
committed
ci: Merge to docker
1 parent 4fd63c4 commit 7f59b6c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci-docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@ jobs:
170170
set -x
171171
.github/scripts/build-doc.sh
172172
- name: Verify no untracked or modified files after build
173-
continue-on-error: true #ToDo: Check what to do with the changed .po files
174173
run: |
175-
.github/scripts/verify-clean-repo.sh
174+
#*.po and documentation.pot are modifyed by build. Ignore them for now.
175+
.github/scripts/verify-clean-repo.sh ':(exclude)docs/po/*.po' ':(exclude)docs/po/documentation.pot'
176176
177177
package-arch:
178178
runs-on: ${{ matrix.runner }}
@@ -288,9 +288,9 @@ jobs:
288288
git config --global --add safe.directory ${PWD}
289289
.github/scripts/build-package-indep.sh
290290
- name: Verify no untracked or modified files after build
291-
continue-on-error: true #ToDo: Check what to do with the changed .po files
292291
run: |
293-
.github/scripts/verify-clean-repo.sh ':(exclude)VERSION' ':(exclude)debian/changelog'
292+
#*.po and documentation.pot are modifyed by build. Ignore them for now.
293+
.github/scripts/verify-clean-repo.sh ':(exclude)VERSION' ':(exclude)debian/changelog' ':(exclude)docs/po/*.po' ':(exclude)docs/po/documentation.pot'
294294
- name: Install debian packages
295295
run: |
296296
set -x

0 commit comments

Comments
 (0)