Revision 8d267a66700c9f6cb99d18673364354b4e884b75 authored by Wuyin Lin on 12 April 2022, 21:23:01 UTC, committed by Wuyin Lin on 12 April 2022, 21:23:01 UTC
Revert changes to elm namelist_defaults for ne30pg2 and simyr1850

Revert the changes to fsurdat and flndtopo for ne30pg2 and 1850.
The changes were introduced by #4781.

[BFB] but NML diff when involving 1850 land on ne30pg2
2 parent s 48ff595 + 570bd47
Raw File
setup.sh
#!/bin/bash

go version

export VERSION=3.5.3

function download
{
    wget -t 3 -O singularity-${VERSION}.tar.gz http://portal.nersc.gov/project/e3sm/lukasz/singularity-${VERSION}.tar.gz || \
        wget -t 3 -O singularity-${VERSION}.tar.gz https://dabdceba-6d04-11e5-ba46-22000b92c6ec.e.globus.org/containers/public/singularity-${VERSION}.tar.gz
    return $?
}

# Install Singularity
download && \
    tar -xzf singularity-${VERSION}.tar.gz && \
    cd singularity/
./mconfig && \
    make -C ./builddir && \
    sudo make -C ./builddir install

singularity --version
back to top