Skip to content

Commit

Permalink
Create ccpp.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
raffenet committed Dec 10, 2019
1 parent b74a1fa commit 4d772d9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: MPICH Build

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: uname -a
run: uname -a
- name: install gfortran
run: sudo apt-get install gfortran
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure --prefix=$PWD/i
- name: make
run: make -j install
- name: cpi
run: i/bin/mpiexec -n 2 ./examples/cpi

0 comments on commit 4d772d9

Please sign in to comment.