Mercurial > p > roundup > code
comparison .github/workflows/build-xapian.yml @ 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 |
comparison
equal
deleted
inserted
replaced
| 7949:5cc2d0001723 | 7950:29730a09e882 |
|---|---|
| 33 PYTEST_ADDOPTS: "--color=yes" | 33 PYTEST_ADDOPTS: "--color=yes" |
| 34 # OS: ${{ matrix.os }} | 34 # OS: ${{ matrix.os }} |
| 35 PYTHON_VERSION: ${{ matrix.python-version }} | 35 PYTHON_VERSION: ${{ matrix.python-version }} |
| 36 | 36 |
| 37 steps: | 37 steps: |
| 38 # Setup version of Python to use | 38 # Checkout the latest code from the repo |
| 39 - name: Checkout source | |
| 40 # example directives: | |
| 41 # disable step | |
| 42 # if: {{ false }} | |
| 43 # continue running if step fails | |
| 44 # continue-on-error: true | |
| 45 uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| 46 | |
| 47 # Setup version of Python to use | |
| 39 - name: Set Up Python 3.13 | 48 - name: Set Up Python 3.13 |
| 40 uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 | 49 uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 |
| 41 with: | 50 with: |
| 42 python-version: 3.13 | 51 python-version: 3.13 |
| 43 allow-prereleases: true | 52 allow-prereleases: true |
