Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanbez committed Dec 11, 2024
1 parent 5f69cb2 commit 254e72f
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/perlmutter-no-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ concurrency:
env:
GOOGLE_CREDENTIALS: "${{ secrets.GOOGLE_CREDENTIALS }}"
GOOGLE_SPREADSHEET_ID: "${{ secrets.GOOGLE_SPREADSHEET_ID }}"
PDC_BUILD_PATH: "${{ github.workspace }}/${{ github.run_id }}"
PDC_TMPDIR: "${{ github.workspace }}/${{ github.run_id }}/pdc-tmp-paralell-pdc"
PDC_DATA_LOC: "${{ github.workspace }}/${{ github.run_id }}/pdc-data-paralell-pdc"
SCHEDULER_PARAMETERS: "-A ${{ secrets.NERSC_PERLMUTTER_PROJECT }} --qos=debug --constraint=cpu --tasks-per-node=64 -N 1 -t 00:30:00"
Expand All @@ -27,17 +26,18 @@ jobs:
- run: |
module load libfabric
module list
mkdir -p ${PDC_BUILD_PATH}/build
cd ${PDC_BUILD_PATH}/build
cmake ../.. -DBUILD_MPI_TESTING=ON -DBUILD_SHARED_LIBS=ON -DPDC_SERVER_CACHE=OFF -DBUILD_TESTING=ON -DCMAKE_INSTALL_PREFIX=${PDC_BUILD_PATH}/build -DPDC_ENABLE_MPI=ON -DMERCURY_DIR=$MERCURY_DIR -DCMAKE_C_COMPILER=cc -DMPI_RUN_CMD="srun -A ${{ secrets.NERSC_PERLMUTTER_PROJECT }} --qos=debug --constraint=cpu --tasks-per-node=64"
mkdir -p build install
cd build
cmake .. -DBUILD_MPI_TESTING=ON -DBUILD_SHARED_LIBS=ON -DPDC_SERVER_CACHE=OFF -DBUILD_TESTING=ON -DCMAKE_INSTALL_PREFIX=$(realpath ..)/install -DPDC_ENABLE_MPI=ON -DMERCURY_DIR=$MERCURY_DIR -DCMAKE_C_COMPILER=cc -DMPI_RUN_CMD="srun -A ${{ secrets.NERSC_PERLMUTTER_PROJECT }} --qos=debug --constraint=cpu --tasks-per-node=64"
make -j
make install
- uses: actions/[email protected]
if: success()
with:
name: "${{ github.job }}"
path: |
${{ github.workspace }}/${{ github.run_id }}/build
build
install
parallel-pdc:
needs:
Expand All @@ -55,7 +55,7 @@ jobs:
- uses: actions/[email protected]
- run: |
export LD_LIBRARY_PATH="$MERCURY_DIR/lib:$LD_LIBRARY_PATH"
cd ${PDC_BUILD_PATH}
cd install
ctest -L parallel_pdc
rm -rf ${PDC_TMPDIR} ${PDC_DATA_LOC}
Expand All @@ -74,12 +74,9 @@ jobs:
fetch-depth: 20
lfs: true
- uses: actions/[email protected]
with:
path: |
${{ github.workspace }}/${{ github.run_id }}
- run: |
export LD_LIBRARY_PATH="$MERCURY_DIR/lib:$LD_LIBRARY_PATH"
cd ${PDC_BUILD_PATH}
cd install
ctest -L parallel_obj
rm -rf ${PDC_TMPDIR} ${PDC_DATA_LOC}

0 comments on commit 254e72f

Please sign in to comment.