update uberenv and related configs #622
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pip setup | |
on: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build_pip_basic: | |
name: Ubuntu pip setup.py | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install Deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install binutils \ | |
gcc \ | |
g++ \ | |
gfortran \ | |
python3 \ | |
perl \ | |
git \ | |
git-lfs \ | |
curl \ | |
wget \ | |
tar \ | |
unzip \ | |
build-essential \ | |
libncurses-dev \ | |
libssl-dev \ | |
libblas-dev \ | |
liblapack-dev \ | |
zlib1g-dev \ | |
libgdbm-dev \ | |
libreadline-dev \ | |
libsqlite3-dev \ | |
libbz2-dev \ | |
mpich \ | |
libmpich-dev \ | |
libhdf5-dev | |
- name: Setup Python Env | |
run: python3 -m pip install --upgrade pip numpy mpi4py | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Build & Test | |
run: | | |
env ENABLE_MPI=ON HDF5_DIR=/usr/ pip install -v . | |
rm -rf build | |
python3 -c "import conduit;print(conduit.about());" | |
python3 -c "import conduit.relay;print(conduit.relay.io.about())" | |
python3 -c "import conduit.relay.mpi;print(conduit.relay.mpi.about())" | |