Skip to content

Commit

Permalink
chore: Update test-meson.yml workflow to include f90wrap in pip insta…
Browse files Browse the repository at this point in the history
…ll command
  • Loading branch information
sunt05 committed May 13, 2024
1 parent 663f97e commit 642ab2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ jobs:
# output-dir: wheelhouse
# config-file: ./src/supy/pyproject.toml

- name: Setup tmate session for debugging
if: failure()
uses: mxschmitt/action-tmate@v3
timeout-minutes: 15
# - name: Setup tmate session for debugging
# if: failure()
# uses: mxschmitt/action-tmate@v3
# timeout-minutes: 15

# - name: upload wheels
# uses: actions/upload-artifact@v3
Expand Down
3 changes: 2 additions & 1 deletion src/supy_driver/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ endforeach
##################################################################
# 1. build the SUEWS library using fortran compiler
# invoke make in the suews directory to build the objects
custom_target(
build_suews=custom_target(
'suews_objects',
command: ['make', '-C', '../../suews/', '&&', 'touch', 'dummy.flag'],
build_by_default: true,
Expand Down Expand Up @@ -141,6 +141,7 @@ gen_f90wrap_f90 = custom_target(
input: gen_fpp_files,
build_by_default: true,
output: [out_wrap_f90],
depends:build_suews,
)
##################################################################
# 3. use f2py-f90wrap to generate the C file for the python interface
Expand Down

0 comments on commit 642ab2d

Please sign in to comment.