Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update github tests to use -fallow-argument-mismatch #1946

Merged
merged 26 commits into from
Dec 9, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
CPPFLAGS: "-I/usr/include -I/usr/local/include -I/home/runner/pnetcdf/include"
LDFLAGS: "-L/home/runner/pnetcdf/lib"
PNETCDF_VERSION: 1.12.3
FCFLAGS: "-fallow-argument-mismatch"
steps:
- uses: actions/checkout@v2
- name: Installs
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
LDFLAGS: "-L/home/runner/pnetcdf/lib"
LD_LIBRARY_PATH: "/home/runner/pnetcdf/lib"
PNETCDF_VERSION: 1.12.3
FCFLAGS: "-fallow-argument-mismatch"
steps:
- uses: actions/checkout@v2
- name: Installs
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cmake_ncint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
LDFLAGS: "-L/home/runner/pnetcdf/lib"
LD_LIBRARY_PATH: "/home/runner/pnetcdf/lib"
PNETCDF_VERSION: 1.12.3
FCFLAGS: "-fallow-argument-mismatch"
steps:
- uses: actions/checkout@v2
- name: Installs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
PNETCDF_VERSION: 1.12.3
HDF5_VERSION: 1.10.7
MPICH_VERSION: 3.3.2
steps:
FCFLAGS: "-fallow-argument-mismatch"
steps:
- uses: actions/checkout@v2
- name: Installs
run: |
Expand Down

This file was deleted.

155 changes: 0 additions & 155 deletions .github/workflows/netcdf-4.7.4_pnetcdf-12.1_ncint_openmpi_4.0.4.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
NETCDF_F_VERSION: 4.5.4
MPICH_VERSION: 3.3.2
HDF5_VERSION: 1.12.0
steps:
FCFLAGS: "-fallow-argument-mismatch"
steps:
- uses: actions/checkout@v2
- name: Installs
run: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: netcdf-4.7.4_hdf5-1.12.0_pnetcdf-12.2_ncint_mpich-3.3_asan

name: netcdf-${{ NETCDF_C_VERSION}}_hdf5-${{ HDF5_VERSION }}_pnetcdf-${{ PNETCDF_VERSION }}_ncint_mpich-${{ MPICH_VERSION}}_asan
run-name: netcdf-${{ NETCDF_C_VERSION}}_hdf5-${{ HDF5_VERSION }}_pnetcdf-${{ PNETCDF_VERSION }}_ncint_mpich-${{ MPICH_VERSION}}_asan
on:
push:
branches: [ master ]
Expand All @@ -14,11 +14,12 @@ jobs:
env:
CPPFLAGS: "-I/home/runner/mpich/include -I/home/runner/hdf5/include -I/home/runner/netcdf-c/include -I/home/runner/netcdf-fortran/include -I/home/runner/pnetcdf/include"
LDFLAGS: "-L/home/runner/mpich/lib -L/home/runner/hdf5/lib -L/home/runner/netcdf-c/lib -L/home/runner/netcdf-fortran/lib -L/home/runner/pnetcdf/lib"
NETCDF_C_VERSION: 4.7.4
NETCDF_F_VERSION: 4.5.4
NETCDF_C_VERSION: 4.9.0
NETCDF_F_VERSION: 4.6.0
PNETCDF_VERSION: 1.12.3
MPICH_VERSION: 3.3.2
HDF5_VERSION: 1.12.0
MPICH_VERSION: 4.0.3
HDF5_VERSION: 1.12.3
FCFLAGS: "-fallow-argument-mismatch"
steps:
- uses: actions/checkout@v2
- name: Installs
Expand Down Expand Up @@ -145,7 +146,7 @@ jobs:
export CC=/home/runner/mpich/bin/mpicc
export FC=/home/runner/mpich/bin/mpifort
export CFLAGS="-g -O0 -fsanitize=address -fno-omit-frame-pointer"
export FCFLAGS="-g -O0 -fsanitize=address -fno-omit-frame-pointer"
export FCFLAGS="$FCFLAGS -g -O0 -fsanitize=address -fno-omit-frame-pointer"
autoreconf -i
./configure --enable-fortran --enable-netcdf-integration
make -j check
Expand Down
Loading