Skip to content

fixes for MacOS and new CI to prevent future breaks #3

fixes for MacOS and new CI to prevent future breaks

fixes for MacOS and new CI to prevent future breaks #3

Workflow file for this run

name: Ubuntu
on:
pull_request:
branches: [ stable, develop ]
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
PDC:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- name: Dependencies
run: .github/workflows/dependencies-linux.sh
- name: Build PDC
# working-directory: ./src
run: |
mkdir build && cd build
cmake ../ -DBUILD_MPI_TESTING=ON -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=ON -DPDC_ENABLE_MPI=ON -DCMAKE_C_COMPILER=mpicc
make -j2
- name: Test PDC
working-directory: build
run: ctest -L serial