chore: fix typo #38
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: lin auto ompi dr mr s3 | |
on: | |
push: | |
branches: [ develop ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install ninja-build autoconf automake libtool libtool-bin libopenmpi-dev libpthread-stubs0-dev libcurl4-openssl-dev | |
- name: Get Source | |
uses: actions/[email protected] | |
- name: Build and test | |
env: | |
NPROCS: 2 | |
run: | | |
set | |
./autogen.sh | |
./configure --enable-parallel --enable-direct-vfd --enable-mirror-vfd --enable-ros3-vfd CC=mpicc | |
make | |
make check | |