Skip to content

Commit

Permalink
dd
Browse files Browse the repository at this point in the history
Signed-off-by: Ralph Castain <[email protected]>
  • Loading branch information
rhc54 committed Jan 8, 2025
1 parent ea3c275 commit c202d46
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/builds-older.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
./configure --prefix=$RUNNER_TEMP/pmixinstall
make -j
make install
cp examples/hello $RUNNER_TEMP/hello
cp examples/hello $RUNNER_TEMP/pmixinstall/bin
- name: Git clone PRRTE
uses: actions/checkout@v3
with:
Expand All @@ -36,7 +36,6 @@ jobs:
./configure --prefix=$RUNNER_TEMP/prteinstall --with-pmix=$RUNNER_TEMP/pmixinstall
make -j
make install
pwd
- name: Tweak PRRTE
run: |
# Tweak PRRTE
Expand All @@ -47,12 +46,7 @@ jobs:
run: |
export PATH=$RUNNER_TEMP/prteinstall/bin:${PATH}
export LD_LIBRARY_PATH=$RUNNER_TEMP/prteinstall/lib:${LD_LIBRARY_PATH}
pwd
ls
ls openpmix
ls openpmix/v5
ls -l openpmix/v5/examples
prterun -n 4 $RUNNER_TEMP/hello
prterun -n 4 $RUNNER_TEMP/pmixinstall/bin/hello
ubuntuClang:
runs-on: ubuntu-latest
Expand All @@ -75,7 +69,7 @@ jobs:
CC=clang ./configure --prefix=$RUNNER_TEMP/pmixinstall
make -j
make install
cp examples/hello $RUNNER_TEMP/hello
cp examples/hello $RUNNER_TEMP/pmixinstall/bin
- name: Git clone PRRTE
uses: actions/checkout@v3
with:
Expand All @@ -99,4 +93,4 @@ jobs:
run: |
export PATH=$RUNNER_TEMP/prteinstall/bin:${PATH}
export LD_LIBRARY_PATH=$RUNNER_TEMP/prteinstall/lib:${LD_LIBRARY_PATH}
prterun -n 4 $RUNNER_TEMP/hello >& /dev/null
prterun -n 4 $RUNNER_TEMP/pmixinstall/bin/hello

0 comments on commit c202d46

Please sign in to comment.