Skip to content

Add Density CURE_SHRINKAGE model #498

Add Density CURE_SHRINKAGE model

Add Density CURE_SHRINKAGE model #498

Workflow file for this run

name: Goma Unit Tests
on: [push, pull_request]
concurrency:
group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{github.event_name == 'pull_request'}}
jobs:
build-unit:
name: build release unittest
runs-on: ubuntu-latest
container: westonortiz/goma-libs
defaults:
run:
shell: bash -l -e {0}
steps:
- uses: actions/checkout@v3
- name: Check versions
run: |
. /opt/goma-libs/config.sh
echo $PETSC_DIR
mpirun --version
cmake --version
- name: CMake Configure Goma
run: |
. /opt/goma-libs/config.sh
cmake -DCMAKE_BUILD_TYPE=Release -Bbuild -DENABLE_TESTING=ON .
- name: Build Goma
run: |
. /opt/goma-libs/config.sh
cp scripts/gcc-warnings.json "$HOME/"
echo "::add-matcher::$HOME/gcc-warnings.json"
cd build
make -j 2
./goma -v
- name: Goma Unit Tests
run: |
. /opt/goma-libs/config.sh
export OMPI_MCA_btl_base_warn_component_unused='0'
cd build
make -j2
ctest --output-on-failure -j 2