Skip to content

Commit

Permalink
Update sifdecoder.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Aug 16, 2024
1 parent c9439a1 commit 23bd981
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/sifdecoder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,22 +79,25 @@ jobs:
echo "Processing $file"
rm -f *.f *.o *.d
if [[ "${{ matrix.precision }}" == "single" ]]; then
./sifdecoder_standalone -sp "$file"
if [[ -f "ELFUN_s.SIF" ]]; then
problems+=("$file")
else
./sifdecoder_standalone -sp "$file"
gfortran -shared -fPIC *.f
fi
fi
if [[ "${{ matrix.precision }}" == "double" ]]; then
./sifdecoder_standalone -dp "$file"
if [[ -f "ELFUN.SIF" ]]; then
problems+=("$file")
fi
gfortran -shared -fPIC *.f
fi
if [[ "${{ matrix.precision }}" == "quadruple" ]]; then
./sifdecoder_standalone -qp "$file"
if [[ -f "ELFUN_q.SIF" ]]; then
problems+=("$file")
else
./sifdecoder_standalone -qp "$file"
gfortran -shared -fPIC *.f
fi
fi
Expand Down

0 comments on commit 23bd981

Please sign in to comment.