Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 7632:0334d371ea11
build: prevent diff from exiting shell script.
[skip travis]
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 11 Sep 2023 03:38:22 -0400 |
| parents | 4f5a8b402b40 |
| children | bdc81c1e2eec |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Mon Sep 11 03:35:03 2023 -0400 +++ b/.github/workflows/ci-test.yml Mon Sep 11 03:38:22 2023 -0400 @@ -210,7 +210,7 @@ -e '/PYTHON3_CACHE_OPT1_EXT=/s/imp\.get_tag()/sys.implementation.cache_tag/g' \ -e '/PYTHON3_CACHE_OPT1_EXT=/s/imp\b/importlib/g' \ configure; \ - diff -u configure.FCS configure; \ + diff -u configure.FCS configure || true; \ ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; \ fi case "$PYTHON_VERSION" in nightly) echo skipping xapian build;; *) make && sudo make install; esac
