Updated SageMath version to 10.6.beta7 #2955
This file contains 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: Build & Test using Meson | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
workflow_dispatch: | |
# Allow to run manually | |
concurrency: | |
# Cancel previous runs of this workflow for the same branch | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Conda (${{ matrix.os }}, Python ${{ matrix.python }}) | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu] | |
python: ['3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Merge CI fixes from sagemath/sage | |
run: | | |
.ci/merge-fixes.sh | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Cache conda packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/conda_pkgs_dir | |
key: | |
${{ runner.os }}-conda-${{ hashFiles('environment-3.11-linux.yml') }} | |
- name: Compiler cache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: ${{ runner.os }}-meson-${{ matrix.python }} | |
- name: Setup Conda environment | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: ${{ matrix.python }} | |
miniforge-version: latest | |
use-mamba: true | |
channels: conda-forge | |
channel-priority: true | |
activate-environment: sage-dev | |
environment-file: environment-${{ matrix.python }}-${{ startsWith(matrix.os, 'macos') && (startsWith(runner.arch, 'ARM') && 'macos' || 'macos-x86_64') || 'linux' }}.yml | |
- name: Print Conda environment | |
shell: bash -l {0} | |
run: | | |
conda info | |
conda list | |
- name: Build | |
shell: bash -l {0} | |
run: | | |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | |
export CC="ccache $CC" | |
export CXX="ccache $CXX" | |
# Use --no-deps and pip check below to verify that all necessary dependencies are installed via conda | |
pip install --no-build-isolation --no-deps --config-settings=builddir=builddir . -v | |
- name: Check update-meson | |
# this step must be after build, because meson.build creates a number of __init__.py files | |
# that is needed to make tools/update-meson.py run correctly | |
shell: bash -l {0} | |
run: | | |
python3 tools/update-meson.py | |
if ! ./tools/test-git-no-uncommitted-changes; then | |
git add --intent-to-add . # also show newly created files in git diff | |
git status | |
git diff | |
false | |
fi | |
- name: Verify dependencies | |
shell: bash -l {0} | |
run: pip check | |
- name: Test | |
shell: bash -l {0} | |
run: | | |
# We don't install sage_setup, so don't try to test it | |
rm -R ./src/sage_setup/ | |
./sage -t --all -p4 --format github | |
- name: Upload log | |
uses: actions/[email protected] | |
if: failure() | |
with: | |
name: ${{ runner.os }}-meson-${{ matrix.python }}-log | |
path: builddir/meson-logs/ |