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 a3d7473
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: MPICH Build

on: [push]

jobs:
build:

runs-on: ubuntu-latest
architecture: aarch64

steps:
- uses: uraimo/[email protected]
with:
architecture: aarch64
- 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: cpi
run: i/bin/mpiexec -n 2 ./examples/cpi

0 comments on commit a3d7473

Please sign in to comment.