Skip to content

Commit

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

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: get proc info
run: cat /proc/cpuinfo
- name: get mem info
run: free
- 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: make testing
run: make testing

0 comments on commit 713eecd

Please sign in to comment.