Skip to content

Commit

Permalink
remove expand=False
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpintarelli committed Jan 25, 2024
1 parent b6388ff commit d3a9ea3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions stackinator/repo/packages/cray-gtl/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ class CrayGtl(Package):
version(
ver,
sha256=sha,
url=f"https://jfrog.svc.cscs.ch/artifactory/cray-mpich/cray-gtl-{ver}.{platform.machine()}.tar.gz",
expand=False,
url=f"https://jfrog.svc.cscs.ch/artifactory/cray-mpich/cray-gtl-{ver}.{platform.machine()}.tar.gz"
)

variant("cuda", default=False)
Expand Down
3 changes: 1 addition & 2 deletions stackinator/repo/packages/cray-mpich/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ class CrayMpich(Package):
version(
ver,
sha256=sha,
url=f"https://jfrog.svc.cscs.ch/artifactory/cray-mpich/cray-mpich-{ver}.{platform.machine()}.tar.gz",
expand=False,
url=f"https://jfrog.svc.cscs.ch/artifactory/cray-mpich/cray-mpich-{ver}.{platform.machine()}.tar.gz"
)

variant("cuda", default=False)
Expand Down
3 changes: 1 addition & 2 deletions stackinator/repo/packages/cray-pals/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ class CrayPals(Package):
version(
ver,
sha256=sha,
url=f"https://jfrog.svc.cscs.ch/artifactory/cray-mpich/cray-pals-{ver}.{platform.machine()}.tar.gz",
expand=False,
url=f"https://jfrog.svc.cscs.ch/artifactory/cray-mpich/cray-pals-{ver}.{platform.machine()}.tar.gz"
)

# Fix up binaries with patchelf.
Expand Down
3 changes: 1 addition & 2 deletions stackinator/repo/packages/cray-pmi/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ class CrayPmi(Package):
version(
ver,
sha256=sha,
url=f"https://jfrog.svc.cscs.ch/artifactory/cray-mpich/cray-pmi-{ver}.{platform.machine()}.tar.gz",
expand=False,
url=f"https://jfrog.svc.cscs.ch/artifactory/cray-mpich/cray-pmi-{ver}.{platform.machine()}.tar.gz"
)

# Fix up binaries with patchelf.
Expand Down

0 comments on commit d3a9ea3

Please sign in to comment.