New jj2lsj90_2024 code by G. Gaigalas #155
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: Build with Make | |
# branches: '*' only matches "main" branches, i.e. ones without a / | |
# This ensures that we don't run CI multiple times on pull requests, since we expect all | |
# feature branches to be namespaced as <prefix>/<branch>. | |
on: | |
push: | |
branches: '*' | |
tags: '**' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: "Install dependencies" | |
run: sudo apt-get install -y build-essential gfortran liblapack-dev libblas-dev openmpi-bin openmpi-common libopenmpi-dev | |
- name: Build GRASP | |
run: make | |
- name: Verify binaries | |
run: ./contrib/checkbin.sh |