added support to build a free threading python package (aka no GIL) (… #1233
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- language: python | |
- language: java | |
config: -old | |
- language: java | |
config: -new | |
- language: csharp | |
- language: r | |
- language: scala | |
container: ghcr.io/lballabio/quantlib-swig-devenv:${{ matrix.language }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
./.ci/${{ matrix.language }}${{ matrix.config }}.build | |
- name: Install | |
run: | | |
./.ci/${{ matrix.language }}${{ matrix.config }}.install | |
- name: Check | |
run: | | |
./.ci/${{ matrix.language }}${{ matrix.config }}.check |