Skip to content

Commit ef1b9ea

Browse files
authored
Merge pull request #327 from tbirdso/ignore-warnings
BUG: Ignore breathe duplicate C++ warnings in docs CI
2 parents 52bbe44 + 7c08481 commit ef1b9ea

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,8 @@ jobs:
341341
\${CTEST_CUSTOM_WARNING_EXCEPTION}
342342
# macOS Azure VM Warning
343343
"ld: warning: text-based stub file"
344+
# breathelink warning
345+
"WARNING: Duplicate C"
344346
)
345347
set(dashboard_no_clean 1)
346348
set(ENV{CC} ${{ matrix.c-compiler }})
@@ -369,14 +371,14 @@ jobs:
369371
with:
370372
name: Documentation
371373
path: |
372-
${{ github.workspace }}/../../bld/ITKEx-build/ITKSphinxExamples-*-html.tar.gz
373-
${{ github.workspace }}/../../bld/ITKEx-build/ITKSphinxExamples-*-html.zip
374+
/home/runner/work/bld/ITKEx-build/ITKSphinxExamples-*-html.tar.gz
375+
/home/runner/work/bld/ITKEx-build/ITKSphinxExamples-*-html.zip
374376
375377
- name: Unpack site
376378
shell: bash
377379
run: |
378380
mkdir site
379-
tar --strip-components=1 -xf ${{ github.workspace }}/../../ITKEx-build/ITKSphinxExamples-*-html.tar.gz -C site
381+
tar --strip-components=1 -xf /home/runner/work/bld/ITKEx-build/ITKSphinxExamples-*-html.tar.gz -C site
380382
381383
- name: Publish website to Netlify
382384
uses: nwtgck/actions-netlify@v1.1.13

0 commit comments

Comments
 (0)