Skip to content

Commit

Permalink
fix: flag in intel ci workflow (#1541)
Browse files Browse the repository at this point in the history
  • Loading branch information
rem1776 authored Jun 11, 2024
1 parent 5757c78 commit e81d5b1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/github_autotools_intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
CC: mpiicc
FC: mpiifort
CFLAGS: "-I/libs/include"
FCFLAGS: "-I/libs/include -g -traceback ${{ matrix.io-flag }}"
FCFLAGS: "-I/libs/include -g -traceback"
LDFLAGS: "-L/libs/lib"
TEST_VERBOSE: 1
I_MPI_FABRICS: "shm" # needed for mpi in image
Expand Down Expand Up @@ -55,7 +55,10 @@ jobs:
- name: checkout
uses: actions/checkout@v4
- name: Configure
run: autoreconf -if ./configure.ac && ./configure --with-yaml
run: |
autoreconf -if ./configure.ac
export LD_LIBRARY_PATH="/libs/lib:$LD_LIBRARY_PATH"
./configure --with-yaml ${{ matrix.io-flag }}
- name: Compile
run: make -j || make
- name: Run test suite
Expand Down

0 comments on commit e81d5b1

Please sign in to comment.