linalg: introduce 64-bit integer size BLAS/LAPACK implementation (ilp64
)
#1627
Workflow file for this run
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: fpm-deployment | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
toolchain: {compiler: gcc, version: 13} | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.x | |
- name: Install requirements | |
run: pip install --upgrade -r config/requirements.txt | |
- uses: fortran-lang/setup-fortran@main | |
id: setup-fortran | |
with: | |
compiler: ${{ matrix.toolchain.compiler }} | |
version: ${{ matrix.toolchain.version }} | |
- name: Setup Fortran Package Manager | |
uses: fortran-lang/setup-fpm@v5 | |
with: | |
fpm-version: 'v0.10.0' | |
- run: | # Just for deployment: create stdlib-fpm folder | |
python config/fypp_deployment.py --deploy_stdlib_fpm | |
- run: | # Use fpm gnu ci to check xdp and qp | |
python config/fypp_deployment.py --with_xdp --with_qp | |
fpm test --profile release --flag '-DWITH_XDP -DWITH_QP' | |
# Update and deploy the f90 files generated by github-ci to the `stdlib-fpm` branch. | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
if: github.event_name != 'pull_request' | |
with: | |
BRANCH: stdlib-fpm | |
FOLDER: stdlib-fpm |