use powershell to install MSMPI #17
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: Job2 - Minimal version | |
on: [push] | |
jobs: | |
linux: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [20.04, 22.04] | |
name: Job2 - Ubuntu ${{ matrix.version }} | |
runs-on: ubuntu-${{ matrix.version }} | |
steps: | |
- uses: actions/checkout@main | |
- name: Install | |
run: | | |
sudo apt update | |
sudo apt install gcc g++ gfortran m4 patch \ | |
git libblas-dev liblapack-dev libsuitesparse-dev \ | |
libhdf5-dev libgsl-dev flex bison | |
- name: Configure | |
run: | | |
tar xvf AutoGeneratedFile.tar.gz | |
./configure --without-mpi --prefix="${HOME}/freefem" | |
- name: Build | |
run: make -j2 | |
- name: Check | |
continue-on-error: true | |
run: make check | |
- name: Install | |
run: make install | |
macos: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [11, 12] | |
name: Job2 - MacOS ${{ matrix.version }} | |
runs-on: macos-${{ matrix.version }} | |
env: | |
CC: clang | |
CXX: clang++ | |
FC: gfortran | |
F77: gfortran | |
steps: | |
- uses: actions/checkout@main | |
- name: Install | |
run: brew install gcc m4 git flex bison suitesparse hdf5 | |
- name: Symlink GCC & Fortran | |
run: | | |
sudo ln -fs /usr/local/bin/gfortran-12 /usr/local/bin/gfortran | |
sudo ln -fs /usr/local/bin/gcc-12 /usr/local/bin/gcc | |
sudo ln -fs /usr/local/bin/g++-12 /usr/local/bin/g++ | |
# symlink dylib location for previous versions | |
sudo ln -fs /usr/local/opt/gcc/lib/gcc/12 /usr/local/opt/gcc/lib/gcc/11 | |
sudo ln -fs /usr/local/opt/gcc/lib/gcc/12 /usr/local/opt/gcc/lib/gcc/10 | |
- name: Configure | |
run: | | |
tar xvf AutoGeneratedFile.tar.gz | |
./configure --without-mpi --prefix="${HOME}/freefem" | |
- name: Build | |
run: make -j2 | |
- name: Check | |
continue-on-error: true | |
run: make check | |
- name: Install | |
run: make install | |
windows: | |
name: Job2 - Windows | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: >- | |
mingw-w64-x86_64-toolchain | |
make | |
m4 | |
patch | |
git | |
flex | |
bison | |
unzip | |
mingw-w64-x86_64-openblas | |
mingw-w64-x86_64-hdf5 | |
mingw-w64-x86_64-gsl | |
- uses: actions/checkout@v4 | |
- name: Configure | |
run: | | |
tar xvf AutoGeneratedFile.tar.gz | |
./configure --without-mpi --prefix="${HOME}/freefem" | |
- name: Build | |
run: make -j2 | |
- name: Check | |
continue-on-error: true | |
run: make check | |
- name: Install | |
run: make install |