ExaWorks / SDK

ExaWorks SDK
11 stars 12 forks source link

adding summit stuff to ornl-ci #185

Closed ketancmaheshwari closed 1 year ago

mtitov commented 1 year ago

quick comments:

(1) Since we have two shared spaces, then we need to set that with the following variables (or set them within GitLab settings)

variables:
  SPACK_WORK_DIR_OPEN: /gpfs/wolf/csc449/proj-shared/sdk/
  SPACK_WORK_DIR_MODERATE: ...

(2) in spack-setup, spack-update need to add the following options (since it should be set in different spaces)

parallel:
  matrix:
    - HOST: "ascent"
      SPACK_WORK_DIR: ${SPACK_WORK_DIR_OPEN}
    - HOST: "summit"
      SPACK_WORK_DIR: ${SPACK_WORK_DIR_MODERATE}
tags:
  - $HOST
  - nobatch

(3) missed summit setup in spack-build

ketancmaheshwari commented 1 year ago

I made those changes in my latest commit.

mturilli commented 1 year ago

@mtitov is this ready to be merged?