Skip to content

Commit

Permalink
Adjust PMIx location
Browse files Browse the repository at this point in the history
Signed-off-by: Ralph Castain <[email protected]>
  • Loading branch information
rhc54 authored and jsquyres committed Sep 16, 2023
1 parent 73013c5 commit 5fcb1f5
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install dependencies
run: brew install libevent hwloc autoconf automake libtool
- name: Git clone OpenPMIx
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
repository: openpmix/openpmix
Expand All @@ -23,7 +23,7 @@ jobs:
run: |
cd openpmix/master
./autogen.pl
./configure --prefix=${PWD}/pmixinstall
./configure --prefix=$GITHUB_WORKSPACE/pmixinstall
make -j
make install
- name: Git clone PRRTE
Expand All @@ -47,7 +47,7 @@ jobs:
c=../configure
fi
$c --prefix=${PWD}/prteinstall --with-pmix=${PWD}/pmixinstall $sphinx
$c --prefix=${PWD}/prteinstall --with-pmix=$GITHUB_WORKSPACE/pmixinstall $sphinx
make -j
make install
make uninstall
Expand All @@ -64,7 +64,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y --no-install-recommends software-properties-common libhwloc-dev libevent-dev
- name: Git clone OpenPMIx
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
repository: openpmix/openpmix
Expand All @@ -74,7 +74,7 @@ jobs:
run: |
cd openpmix/master
./autogen.pl
./configure --prefix=${PWD}/pmixinstall
./configure --prefix=$GITHUB_WORKSPACE/pmixinstall
make -j
make install
- name: Git clone PRRTE
Expand All @@ -98,7 +98,7 @@ jobs:
c=../configure
fi
$c --prefix=${PWD}/prteinstall --with-pmix=${PWD}/pmixinstall $sphinx
$c --prefix=${PWD}/prteinstall --with-pmix=$GITHUB_WORKSPACE/pmixinstall $sphinx
make -j
make install
make uninstall
Expand All @@ -111,7 +111,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y --no-install-recommends software-properties-common libhwloc-dev libevent-dev python3 python3-pip
- name: Git clone OpenPMIx
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
repository: openpmix/openpmix
Expand All @@ -121,7 +121,7 @@ jobs:
run: |
cd openpmix/master
./autogen.pl
./configure --prefix=${PWD}/pmixinstall
./configure --prefix=$GITHUB_WORKSPACE/pmixinstall
make -j
make install
- name: Git clone PRRTE
Expand All @@ -132,5 +132,5 @@ jobs:
run: |
pip install -r docs/requirements.txt
./autogen.pl
./configure --prefix=${PWD}/prteinstall --with-pmix=${PWD}/pmixinstall --enable-sphinx
make distcheck AM_DISTCHECK_MAKEFLAGS=-j
./configure --prefix=${PWD}/prteinstall --with-pmix=$GITHUB_WORKSPACE/pmixinstall --enable-sphinx
make distcheck AM_DISTCHECK_MAKEFLAGS=-j AM_DISTCHECK_CONFIGURE_FLAGS="--with-pmix=$GITHUB_WORKSPACE/pmixinstall"

0 comments on commit 5fcb1f5

Please sign in to comment.