Skip to content

ci: merge steps

ci: merge steps #400

Workflow file for this run

name: linux autotools parallel vfds
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/checkout@v4
- 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