Skip to content

Commit

Permalink
Add MPIPreferences subpackage to select binary (#541)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
3 people authored Apr 13, 2022
1 parent 7fcf36d commit 890ee6e
Show file tree
Hide file tree
Showing 35 changed files with 1,947 additions and 1,736 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.build(;verbose=true)'
shell: julia --color=yes --project=docs/ {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path="lib/MPIPreferences"))
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
Pkg.build(;verbose=true)
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading

2 comments on commit 890ee6e

@vchuravy
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir=lib/MPIPreferences

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/57964

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a MPIPreferences-v0.1.0 -m "<description of version>" 890ee6e69ed902af2d7db112b601ef3b2744400b
git push origin MPIPreferences-v0.1.0

Please sign in to comment.