Skip to content

Commit 4f2ab4a

Browse files
committed
Test against files created by flang, not gfortran
1 parent 2570af3 commit 4f2ab4a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,16 @@ jobs:
8686
8787
- name: Check (for humans)
8888
run: |
89-
Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\libbmif.a
90-
Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\libbmif_win.dll.a
91-
Test-Path -Path ${{ env.LIBRARY_PREFIX }}\bin\libbmif_win.dll
89+
Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\bmif.lib
90+
Test-Path -Path ${{ env.LIBRARY_PREFIX }}\bin\bmif.dll
9291
Test-Path -Path ${{ env.LIBRARY_PREFIX }}\include\bmif_${{ env.BMI_VERSION }}.mod
92+
Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\bmif_static.lib
9393
pkg-config --exists --print-errors bmif
9494
9595
- name: Test (for machines)
9696
run: |
97-
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\libbmif.a ) ){ exit 1 }
98-
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\libbmif_win.dll.a ) ){ exit 1 }
99-
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\bin\libbmif_win.dll ) ){ exit 1 }
97+
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\bmif.lib ) ){ exit 1 }
98+
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\bin\bmif.dll ) ){ exit 1 }
10099
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\include\bmif_${{ env.BMI_VERSION }}.mod ) ){ exit 1 }
100+
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\bmif_static.lib ) ){ exit 1 }
101101
if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\pkgconfig\bmif.pc ) ){ exit 1 }

0 commit comments

Comments
 (0)