Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the GitHub CLI to the global workflow env #1416

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ubuntu-ci-x86_64-intel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
--exclude curl --exclude python
spack external find --scope system grep
spack external find --scope system sed
spack external find --scope system grep
climbfuji marked this conversation as resolved.
Show resolved Hide resolved
spack external find --scope system perl
spack external find --scope system wget
spack external find --scope system texlive
Expand Down
9 changes: 9 additions & 0 deletions configs/common/packages_intel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ packages:
gettext:
require:
- '@:0.21'
go:
require:
- '%gcc'
go-bootstrap:
require:
- '%gcc'
gh:
require:
- '%gcc'
gsibec:
require:
- '+mkl'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class GlobalWorkflowEnv(BundlePackage):
depends_on("bacio")
depends_on("g2")
depends_on("g2tmpl")
depends_on("gh")
depends_on("w3nco")
depends_on("w3emc")
depends_on("sp", when="^ip@:4")
Expand Down
Loading