Mercurial > p > roundup > code
changeset 7950:29730a09e882
test: get xapian working under github actions and python 3.13
issue2551338 xapian doesn't build in CI for 3.13 python
check out code otherwise build script aborts.
[skip travis]
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 12 May 2024 19:30:47 -0400 |
| parents | 5cc2d0001723 |
| children | 9009d489bf5a |
| files | .github/workflows/build-xapian.yml |
| diffstat | 1 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/.github/workflows/build-xapian.yml Sun May 12 19:25:57 2024 -0400 +++ b/.github/workflows/build-xapian.yml Sun May 12 19:30:47 2024 -0400 @@ -35,7 +35,16 @@ PYTHON_VERSION: ${{ matrix.python-version }} steps: - # Setup version of Python to use + # Checkout the latest code from the repo + - name: Checkout source + # example directives: + # disable step + # if: {{ false }} + # continue running if step fails + # continue-on-error: true + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + # Setup version of Python to use - name: Set Up Python 3.13 uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 with:
