Skip to content

Commit 890ee6e

Browse files
simonbyrnevchuravygiordano
authored
Add MPIPreferences subpackage to select binary (#541)
Uses Preferences.jl to select MPI binary, which can then be queried by other packages. Remove support for non-standard ABIs. Co-authored-by: Valentin Churavy <[email protected]> Co-authored-by: Mosè Giordano <[email protected]>
1 parent 7fcf36d commit 890ee6e

35 files changed

+1947
-1736
lines changed

.github/workflows/Documenter.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v2
2121
- name: Install dependencies
22-
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.build(;verbose=true)'
22+
shell: julia --color=yes --project=docs/ {0}
23+
run: |
24+
using Pkg
25+
Pkg.develop(PackageSpec(path="lib/MPIPreferences"))
26+
Pkg.develop(PackageSpec(path=pwd()))
27+
Pkg.instantiate()
28+
Pkg.build(;verbose=true)
2329
- name: Build and deploy
2430
env:
2531
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)