Add on-the-fly time averaging for 3D fields and energy spectra #154
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
# This workflow will do a clean install of the dependencies, | |
# and build the source code of AFiD | |
name: AFiD CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# - name: Install GFortran # NB gfortran and build-essential already on VM | |
# run: | | |
# sudo apt install build-essential gfortran | |
- name: Install BLAS and LAPACK | |
run: sudo apt install libblas-dev liblapack-dev | |
- name: Install Parallel HDF5 | |
run: sudo apt install libhdf5-mpich-dev | |
- name: Install FFTW library | |
run: sudo apt install libfftw3-dev | |
- name: Build AFiD | |
run: make |