Ubuntu Build #6
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: Ubuntu Build | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: update the package list | |
run: | |
sudo apt-get update | |
shell: bash | |
- name: Install build tools | |
run: | |
sudo apt-get install build-essential | |
shell: bash | |
- name: Install LaPack | |
run: | |
sudo apt-get install libblas-dev liblapack-dev | |
shell: bash | |
- name: Install MPI | |
run: | | |
sudo apt-get install libopenmpi-dev openmpi-bin | |
echo "MPI_OPTS=--oversubscribe" >> $GITHUB_ENV | |
- name: Install cmake | |
run: | |
sudo apt-get -y install cmake | |
shell: bash | |
- name: Install python | |
run: | |
sudo apt-get install python3.6 | |
shell: bash | |
- name: Run build script | |
run: | | |
chmod +x ./scripts/build-fierro.sh | |
./scripts/build-fierro.sh --build_action=full-app --solver=all --kokkos_build_type=openmp --build_cores=2 | |
shell: bash | |
- name: Run tests | |
run: | | |
cd integrated-tests | |
chmod +x test_fierro.py | |
python3 test_fierro.py | |
shell: bash |