Update installMacOS.sh #1123
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: build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
ubuntu-20-04: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@master | |
- name: install pre-reqs and build | |
run: sudo ./install/installUbuntu.sh | |
- name: test | |
run: | | |
./build/usher --help | |
./build/matUtils --help | |
mpirun -np 1 ./build/matOptimize --help | |
./build/ripples --help | |
command -v mafft | |
ubuntu-22-04: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@master | |
- name: install pre-reqs and build | |
run: sudo ./install/installUbuntu.sh | |
- name: test | |
run: | | |
./build/usher --help | |
./build/matUtils --help | |
mpirun -np 1 ./build/matOptimize --help | |
./build/ripples --help | |
command -v mafft | |
macOS-latest: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: install pre-reqs and build | |
run: ./install/installMacOS.sh | |
- name: test | |
run: | | |
./build/usher --help | |
./build/usher-sampled --help | |
./build/matUtils --help | |
mpirun -np 1 ./build/matOptimize --help | |
./build/ripples --help | |
command -v mafft |