Skip to content

Commit

Permalink
Updating CI to include libmesh
Browse files Browse the repository at this point in the history
  • Loading branch information
pshriwise committed Aug 6, 2024
1 parent a70463f commit dbb373d
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,31 @@ jobs:
make -j4
sudo make install
- name: Build libMesh
shell: bash
run: |
cd ~
git clone https://github.com/libMesh/libmesh.git
cd libmesh
git checkout v1.6.0
mkdir build
../configure --prefix=/usr/local --enable-netcdf --enable-optimize --disable-mpi
make -j2
sudo make install
- name: Build
shell: bash
run: |
mkdir build
cd build
cmake ..
cmake .. -DXDG_ENABLE_MOAB=ON -DXDG_ENABLE_LIBMESH=ON
make -j4
- name: Test
shell: bash
run: |
cd build
ctest -j4 --output-on-failure
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3

0 comments on commit dbb373d

Please sign in to comment.