Skip to content

Commit

Permalink
Update README - add badges and FMT [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Mar 4, 2022
1 parent a628c20 commit 84eba29
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
[![Appveyor Build](https://ci.appveyor.com/api/projects/status/pis4gok72yh0wwfs/branch/master?svg=true)](https://ci.appveyor.com/project/gsjaardema/seacas/branch/master)
[![Github Actions -- CI Serial](https://github.com/gsjaardema/seacas/actions/workflows/build_test.yml/badge.svg)](https://github.com/gsjaardema/seacas)
[![Github Actions -- CI Variants](https://github.com/gsjaardema/seacas/actions/workflows/build_variant.yml/badge.svg)](https://github.com/gsjaardema/seacas)
[![Github Actions -- CI Intel](https://github.com/gsjaardema/seacas/actions/workflows/intel-build.yml/badge.svg)](https://github.com/gsjaardema/seacas)
[![Github Actions -- CI MSYS2](https://github.com/gsjaardema/seacas/actions/workflows/msys2.yml/badge.svg)](https://github.com/gsjaardema/seacas)

* [Get the sources](#get-the-sources)
* [Build instructions](#build-instructions)
Expand Down Expand Up @@ -69,6 +71,7 @@ manually as detailed in
| CATALYST2 | YES, NO | NO | Should catalyst 2 TPL be built. |
| KOKKOS | YES, NO | NO | Should Kokkos TPL be built. |
| GNU_PARALLEL | YES, NO | YES | Should GNU parallel script be built. |
| FMT | YES, NO | YES | Should Lib::FMT TPL be built. |
| H5VERSION | V112, V110, V18 | V110 | Use HDF5-1.12.X, HDF5-1.10.X or HDF5-1.8.X |
| BB | YES, NO | NO | Enable Burst Buffer support in PnetCDF |
| JOBS | {count} | 2 | Number of "jobs" used for simultaneous compiles |
Expand Down
8 changes: 4 additions & 4 deletions install-tpl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ then
METIS="YES"
fi

USE_FMT=${USE_FMT:-YES}
USE_FMT=${check_valid USE_FMT}
FMT=${FMT:-YES}
FMT=${check_valid FMT}

GNU_PARALLEL=${GNU_PARALLEL:-YES}
GNU_PARALLEL=$(check_valid GNU_PARALLEL)
Expand Down Expand Up @@ -201,7 +201,7 @@ if [ $# -gt 0 ]; then
echo " METIS = ${METIS}"
echo " PARMETIS = ${PARMETIS}"
echo " GNU_PARALLEL = ${GNU_PARALLEL}"
echo " USE_FMT = ${USE_FMT}"
echo " FMT = ${FMT}"
echo " NEEDS_ZLIB = ${NEEDS_ZLIB}"
echo " USE_ZLIB_NG = ${USE_ZLIB_NG}"
echo " NEEDS_SZIP = ${NEEDS_SZIP}"
Expand Down Expand Up @@ -727,7 +727,7 @@ then
fi

# =================== INSTALL FMT ===============
if [ "$USE_FMT" == "YES" ]
if [ "$FMT" == "YES" ]
then
if [ "$FORCE" == "YES" ] || ! [ -e $INSTALL_PATH/lib/libfmt.${LD_EXT} ]
then
Expand Down

0 comments on commit 84eba29

Please sign in to comment.