Upgrade pyPDAF to be compatible with PDAF V2.2.1 #5
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: test_linux_build | |
on: [workflow_dispatch, pull_request] | |
jobs: | |
test_ubuntu_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
ref: upgrade2.2.1 | |
- name: installing dependent libraries | |
run: sudo apt install -y liblapack-dev libblas-dev libopenmpi-dev | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v5 | |
- name: install pyPDAF | |
run: pip install -v . | |
- name: run example | |
run: mpiexec --oversubscribe -n 4 python -u example/main.py | |
- name: Setup tmate session | |
if: ${{ failure() }} | |
uses: mxschmitt/action-tmate@v3 |