Skip to content

Commit

Permalink
adding openpmix dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kmilo9999 committed Jun 7, 2024
1 parent 68adfcf commit 31f42bc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ jobs:
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential wget
sudo DEBIAN_FRONTEND=noninteractive apt-get install libopenmpi-dev openmpi-bin
- name: Download and install PMIx
run: |
wget https://github.com/openpmix/openpmix/releases/download/v3.2.3/pmix-3.2.3.tar.gz
tar -xzf pmix-3.2.3.tar.gz
cd pmix-3.2.3
./configure --prefix=/usr/local
make -j$(nproc)
sudo make install
sudo ldconfig
- name: Download and install Open MPI 4.1.1
run: |
wget https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.1.tar.gz
Expand Down

0 comments on commit 31f42bc

Please sign in to comment.