Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,31 @@ jobs:
./build/fortran/example_lincoa_fortran_2_exe
./build/fortran/example_cobyla_fortran_2_exe

cd ..

- name: Test FPM
shell: bash -e -l {0}
run: |
git clone https://github.com/fortran-lang/fpm.git
cd fpm
git checkout main
micromamba install -c conda-forge fpm gfortran
export FC=lfortran
git checkout d0f89957541bdcc354da8e11422f5efcf9fedd0e
fpm --compiler=$FC build --flag "--cpp --realloc-lhs-arrays --use-loop-variable-after-loop"
fpm --compiler=$FC test --flag "--cpp --realloc-lhs-arrays --use-loop-variable-after-loop"

git clean -dfx
rm -rf build
fpm --compiler=$FC test --flag "--cpp --realloc-lhs-arrays --use-loop-variable-after-loop --separate-compilation"

git clean -dfx
rm -rf build
fpm --compiler=$FC test --flag "--cpp --realloc-lhs-arrays --use-loop-variable-after-loop --fast"

cd ..


test_scipy:
name: Check SciPy Build and Test Run ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down
Loading