oops #8
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 on Phoenix' | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
self: | |
name: Phoenix Runner | |
runs-on: | |
labels: gt | |
# skip this test | |
if: 1 == 2 | |
continue-on-error: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
ml gcc mvapich2 mkl python/3.9.12-rkxvr6 netcdf-c netcdf-cxx netcdf-fortran fftw | |
bash rbc.sh install-with-mkl | |
- name: Test | |
run: | | |
ml gcc mvapich2 mkl netcdf-c netcdf-cxx netcdf-fortran fftw | |
cd common | |
make .depend | |
make | |
cd ../examples/case | |
make .depend | |
make |