Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 7626:f053c2ae3db8
build: fix syntax error.
Bad line break.
[skip travis]
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 11 Sep 2023 02:03:45 -0400 |
| parents | aa8230de5b94 |
| children | bcf99a62deca |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Mon Sep 11 02:00:00 2023 -0400 +++ b/.github/workflows/ci-test.yml Mon Sep 11 02:03:45 2023 -0400 @@ -204,8 +204,7 @@ # 3.11 or newer. # Change distutils.sysconfig... to just sysconfig and SO # to EXT_SUFFIX to get valid value. - if [[ $PYTHON_VERSION == "3."* ]]; then sed -i -e '/PYTHON3_SO=/s/distutils\.//g' -e '/PYTHON3_SO=/s/"SO"/"EXT_SUFFIX"/g' configure; ./configure - --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi + if [[ $PYTHON_VERSION == "3."* ]]; then sed -i -e '/PYTHON3_SO=/s/distutils\.//g' -e '/PYTHON3_SO=/s/"SO"/"EXT_SUFFIX"/g' configure; ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi case "$PYTHON_VERSION" in nightly) echo skipping xapian build;; *) make && sudo make install; esac - name: Install pytest and other packages needed for running tests
