Reformat drag output per Paul's request #409
This file contains hidden or 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: Integration | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| test: [ CYL ] | |
| env: | |
| MOR_DIR: /home/runner/work/NekROM/NekROM | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup NekROM | |
| run: | | |
| echo "$MOR_DIR/bin" >> $GITHUB_PATH | |
| - name: Install MPICH | |
| run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install -y libmpich-dev mpich | |
| - name: Check MPICH | |
| run: | | |
| type mpif77 | |
| type mpicc | |
| - name: Set Flags | |
| run: | | |
| echo "FC=mpif77" >> $GITHUB_ENV | |
| echo "CC=mpicc" >> $GITHUB_ENV | |
| echo "FFLAGS=-w -mcmodel=medium -fprofile-arcs -ftest-coverage" >> $GITHUB_ENV | |
| echo "USR_LFLAGS=-mcmodel=medium" >> $GITHUB_ENV | |
| - name: Setup Julia | |
| run: | | |
| chmod +x $MOR_DIR/tests/julia-init | |
| $MOR_DIR/tests/julia-init | |
| - name: Setup Nek5000 | |
| run: | | |
| git clone --single-branch -b prod https://github.com/kent0/Nek5000 | |
| echo "NEK_SOURCE_ROOT=$MOR_DIR/Nek5000" >> $GITHUB_ENV | |
| echo "SOURCE_ROOT=$MOR_DIR/Nek5000" >> $GITHUB_ENV | |
| echo "$MOR_DIR/Nek5000/bin" >> $GITHUB_PATH | |
| (cd Nek5000/tools; ./maketools genmap) | |
| - name: Integration Test | |
| run: | | |
| TYPE=INTEG TEST=${{ matrix.test }} IPS=L2 NP=1 NB=20 LB=20 SCR=tdragx $MOR_DIR/tests/test.sh |