Skip to content

Commit

Permalink
debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn committed Dec 16, 2020
1 parent d88fb00 commit 5634f3f
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ jobs:

- name: Copy libgfortran
if: matrix.compiler == 'gfortran'
run: cp $(make -s flib_source) $(make -s flib_target)
run: |
make -s flib_source
make -s flib_target
cp -v $(readlink -f $(make -s flib_source)) $(make -s flib_target)
- run: ls lib
- run: zip -r ${{ matrix.container }}-${{ matrix.compiler}} lib share
Expand Down Expand Up @@ -184,8 +187,18 @@ jobs:
run: make install

- name: Copy libgfortran
if: matrix.name == 'ubuntu-gfortran' || matrix.name == 'macos-gfortran' || matrix.name == 'windows-gfortran'
run: cp $(make -s flib_source) $(make -s flib_target)
if: matrix.name == 'ubuntu-gfortran' || matrix.name == 'macos-gfortran'
run: |
make -s flib_source
make -s flib_target
cp -v $(readlink -f $(make -s flib_source)) $(make -s flib_target)
- name: Copy libgfortran
if: matrix.name == 'windows-gfortran'
run: |
ls $(x86_64-w64-mingw32-gfortran --print-file-name=)libgfortran-?.dll
make -s flib_target
cp -v $(readlink -f $(ls $(x86_64-w64-mingw32-gfortran --print-file-name=)libgfortran-?.dll)) $(make -s flib_target)
- name: Zip data # This would actually build your project, using zip for an example artifact
run: zip -r ${{ matrix.name }} ${{ matrix.outputs }}
Expand Down

0 comments on commit 5634f3f

Please sign in to comment.