We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ec1fb1 commit 3147c48Copy full SHA for 3147c48
easybuild/main.py
@@ -103,7 +103,9 @@
103
"see https://docs.easybuild.io/installation/#more_pip_env_EB_PYTHON for more information."
104
"\033[0m"
105
]
106
- sys.stderr.write('\n' + '\n'.join(warning_lines) + '\n\n')
+ # only print the warning if we're not running in GitHub Actions
107
+ if os.getenv('GITHUB_ACTIONS') == 'true':
108
+ sys.stderr.write('\n' + '\n'.join(warning_lines) + '\n\n')
109
110
111
def find_easyconfigs_by_specs(build_specs, robot_path, try_to_generate, testing=False):
0 commit comments