Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarusz committed Aug 23, 2023
1 parent 36b0133 commit ae4a3f1
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/mmf-simplified-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
- name: Configure and build
run: |
source ../../machines/ci/macos-${{matrix.compiler}}.env &&
${{matrix.dycore == 'pam-c' && './cmakescript_pamc.sh' || './cmakescript_pama.sh'}} &&
./cmakescript_${{matrix.dycore}}.sh &&
cmake --build .
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/mmf-simplified-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
- name: Configure and build
run: |
source ../../machines/ci/ubuntu-${{matrix.compiler}}.env &&
${{matrix.dycore == 'pam-c' && './cmakescript_pamc.sh' || './cmakescript_pama.sh'}} &&
./cmakescript_${{matrix.dycore}}.sh &&
cmake --build .
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/pamc-idealized-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: pamc-idealized-ubuntu

on: [push]

jobs:
pamc-idealized-ubuntu:
runs-on: ubuntu-22.04
strategy:
matrix:
compiler:
- gcc
- clang
defaults:
run:
working-directory: standalone/idealized/build
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install mpi and netcdf
run: sudo apt-get install -y libopenmpi-dev libnetcdf-dev

- name: Configure and build
run: |
source ../../machines/ci/ubuntu-${{matrix.compiler}}.env &&
./cmakescript_pamc.sh &&
cmake --build .

0 comments on commit ae4a3f1

Please sign in to comment.