aurora bv scripts #918
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: build_ascent_gcc | |
on: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build_basic: | |
name: Ubuntu Build Ascent GCC | |
runs-on: ubuntu-latest | |
env: | |
CC: gcc | |
CXX: g++ | |
FC: gfortran | |
steps: | |
- name: Install System 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 \ | |
openmpi-bin \ | |
openmpi-common \ | |
libopenmpi-dev \ | |
cmake | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Build TPLs | |
run: | | |
env enable_mpi=ON \ | |
enable_fortran=ON \ | |
enable_tests=OFF \ | |
enable_verbose=OFF \ | |
build_caliper=true \ | |
build_ascent=false \ | |
build_jobs=2 \ | |
./scripts/build_ascent/build_ascent.sh | |
- name: Configure Ascent | |
run: | | |
cmake --version | |
echo "**** Configuring Ascent" | |
cmake -S src -B build -C ascent-config.cmake -DCMAKE_INSTALL_PREFIX=install | |
- name: Build Ascent | |
run: | | |
echo "**** Building Ascent" | |
cmake --build build -j2 | |
- name: Install Ascent | |
run: | | |
echo "**** Installing Ascent" | |
cmake --install build | |
- name: Check Install | |
run: | | |
echo "**** Checking Ascent using-with-cmake-mpi example" | |
export CC=/usr/bin/mpicc | |
export CXX=/usr/bin/mpicxx | |
cd install/examples/ascent/using-with-cmake-mpi | |
cmake -S . -B build | |
cmake --build build --verbose -j2 | |
export VTKM_INSTALL_DIR=`ls -d /home/runner/work/ascent/ascent/install/vtk-m-*` | |
export LD_LIBRARY_PATH=${VTKM_INSTALL_DIR}/lib/:${LD_LIBRARY_PATH} | |
mpiexec -n 2 ./build/ascent_mpi_render_example | |
build_basic_pyvenv: | |
name: Ubuntu Build Ascent GCC with Python VENV | |
runs-on: ubuntu-latest | |
env: | |
CC: gcc | |
CXX: g++ | |
FC: gfortran | |
steps: | |
- name: Install System 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 \ | |
openmpi-bin \ | |
openmpi-common \ | |
libopenmpi-dev \ | |
cmake | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Build TPLs | |
run: | | |
env enable_mpi=ON \ | |
enable_fortran=ON \ | |
enable_tests=OFF \ | |
enable_verbose=OFF \ | |
build_ascent=false \ | |
enable_python=ON \ | |
build_pyvenv=true \ | |
build_jobs=2 \ | |
./scripts/build_ascent/build_ascent.sh | |
- name: Configure Ascent | |
run: | | |
cmake --version | |
echo "**** Configuring Ascent" | |
cmake -S src -B build -C ascent-config.cmake -DCMAKE_INSTALL_PREFIX=install | |
- name: Build Ascent | |
run: | | |
echo "**** Building Ascent" | |
cmake --build build -j2 | |
- name: Install Ascent | |
run: | | |
echo "**** Installing Ascent" | |
cmake --install build | |
- name: Check Install | |
run: | | |
echo "**** Checking Ascent using-with-cmake-mpi example" | |
export CC=/usr/bin/mpicc | |
export CXX=/usr/bin/mpicxx | |
cd install/examples/ascent/using-with-cmake-mpi | |
cmake -S . -B build | |
cmake --build build --verbose -j2 | |
export VTKM_INSTALL_DIR=`ls -d /home/runner/work/ascent/ascent/install/vtk-m-*` | |
export LD_LIBRARY_PATH=${VTKM_INSTALL_DIR}/lib/:${LD_LIBRARY_PATH} | |
mpiexec -n 2 ./build/ascent_mpi_render_example |