Skip to content

Commit

Permalink
Merge pull request #204 from NOAA-EMC/ejh_t3
Browse files Browse the repository at this point in the history
updating docs for release
  • Loading branch information
edwardhartnett authored Sep 28, 2023
2 parents 0483565 + 8cfd249 commit bece871
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 29 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
echo "source /opt/intel/oneapi/setvars.sh" >> ~/.bash_profile
- name: checkout-bacio
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bacio
path: bacio
Expand All @@ -55,15 +55,15 @@ jobs:
make install
- name: checkout-bufr
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bufr
path: bufr
ref: bufr_v12.0.0

- name: cache-bufr
id: cache-bufr
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/bufr
key: bufr-intel-${{ matrix.compilers }}-${{ runner.os }}-v12.0.0
Expand All @@ -78,7 +78,7 @@ jobs:
make install
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: w3emc

Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/Linux_options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
steps:

- name: checkout-bacio
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bacio
path: bacio
ref: v2.6.0

- name: cache-bacio
id: cache-bacio
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/bacio
key: bacio-Linux_options_${{ runner.os }}-v2.5.0-${{ matrix.options }}
Expand All @@ -54,15 +54,15 @@ jobs:
make install
- name: checkout-bufr
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bufr
path: bufr
ref: bufr_v12.0.0

- name: cache-bufr
id: cache-bufr
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/bufr
key: bufr-Linux_options_${{ runner.os }}-v12.0.0-${{ matrix.options }}
Expand All @@ -83,7 +83,7 @@ jobs:
make install
- name: checkout-w3emc
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: w3emc

Expand All @@ -93,10 +93,11 @@ jobs:
cd w3emc
mkdir build
cd build
cmake -DCMAKE_PREFIX_PATH="~/bacio;~/bufr" ${{ matrix.options }} ..
cmake -DCMAKE_PREFIX_PATH="~/bacio;~/bufr" -DCMAKE_INSTALL_PREFIX="~/w3emc/install" ${{ matrix.options }} ..
make -j2 VERBOSE=1
- name: test-w3emc
run: |
cd w3emc/build
ctest --output-on-failure --rerun-failed --verbose
make install
10 changes: 5 additions & 5 deletions .github/workflows/Linux_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
steps:

- name: checkout-bacio
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bacio
path: bacio
ref: v${{ matrix.bacio-version }}

- name: cache-bacio
id: cache-bacio
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/bacio
key: bacio-${{ runner.os }}-v${{ matrix.bacio-version }}
Expand All @@ -49,15 +49,15 @@ jobs:
make install
- name: checkout-bufr
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bufr
path: bufr
ref: v12.0.1

- name: cache-bufr
id: cache-bufr
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/bufr
key: bufr-Linux_options_${{ runner.os }}-v12.0.1
Expand All @@ -72,7 +72,7 @@ jobs:
make install
- name: checkout-w3emc
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: w3emc

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/MacOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:

steps:
- name: checkout-bacio
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bacio
path: bacio
ref: v${{ matrix.bacio-version }}

- name: cache-bacio
id: cache-bacio
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/bacio
key: bacio-${{ runner.os }}-v${{ matrix.bacio-version }}-${{ matrix.compiler }}
Expand All @@ -47,15 +47,15 @@ jobs:
make install
- name: checkout-bufr
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bufr
path: bufr
ref: bufr_v11.7.1

- name: cache-bufr
id: cache-bufr
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/bufr
key: bufr-Linux_options_${{ runner.os }}-v11.7.1
Expand All @@ -70,7 +70,7 @@ jobs:
make install
- name: checkout-w3emc
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: w3emc

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/developer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
python3 -m pip install gcovr
- name: checkout-bacio
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bacio
path: bacio
Expand All @@ -43,15 +43,15 @@ jobs:
make install
- name: checkout-bufr
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: NOAA-EMC/NCEPLIBS-bufr
path: bufr
ref: bufr_v11.7.1

- name: cache-bufr
id: cache-bufr
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/bufr
key: bufr-Linux_options_${{ runner.os }}-v11.7.1
Expand All @@ -66,7 +66,7 @@ jobs:
make install
- name: checkout-w3emc
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: w3emc

Expand All @@ -91,17 +91,17 @@ jobs:
- name: generate-test-coverage
run: |
cd w3emc/build
gcovr -r .. --html-details -o test-coverage.html
gcovr --root .. -v --html-details --exclude ../tests --exclude CMakeFiles --print-summary -o test-coverage.html &> /dev/null
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: w3emc-test-coverage
path: |
w3emc/build/*.html
w3emc/build/*.css
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: docs
path: |
bufr/build/docs/html
w3emc/build/docs/html
3 changes: 2 additions & 1 deletion docs/user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@

## Documentation for Previous Versions

* [NCEPLIBS-w3emc Version 2.10.0](ver-2.10.0/index.html)
* [NCEPLIBS-w3emc Version 2.9.3](ver-2.9.3/index.html)
* [NCEPLIBS-w3emc Version 2.9.2](ver-2.9.2/index.html)

## Introduction

This library contains Fortran 90 decoder/encoder routines for GRIB
This library contains Fortran 77 decoder/encoder routines for GRIB
edition 1.

0 comments on commit bece871

Please sign in to comment.