forked from easybuilders/easybuild-easyblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
c3-builder
committed
Apr 9, 2024
1 parent
47b7975
commit 46186d6
Showing
1 changed file
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
## | ||
# Copyright 2009-2020 Ghent University | ||
# | ||
# This file is part of EasyBuild, | ||
# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en), | ||
# with support of Ghent University (http://ugent.be/hpc), | ||
# the Flemish Supercomputer Centre (VSC) (https://www.vscentrum.be), | ||
# Flemish Research Foundation (FWO) (http://www.fwo.be/en) | ||
# and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en). | ||
# | ||
# https://github.com/easybuilders/easybuild | ||
# | ||
# EasyBuild is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation v2. | ||
# | ||
# EasyBuild is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with EasyBuild. If not, see <http://www.gnu.org/licenses/>. | ||
## | ||
""" | ||
EasyBuild support for installing Ansys Electronics Desktop | ||
@author: Alexi Rivera (Chalmers University of Technology) | ||
@author: Mikael OEhman (Chalmers University of Technology) | ||
@author: Chia-Jung Hsu (Chalmers University of Technology) | ||
""" | ||
import os | ||
import glob | ||
import tempfile | ||
|
||
from easybuild.easyblocks.generic.packedbinary import PackedBinary | ||
from easybuild.tools.build_log import EasyBuildError | ||
from easybuild.tools.run import run_cmd | ||
|
||
|
||
class EB_AEDT(PackedBinary): | ||
"""Support for installing Ansys Electronics Desktop.""" | ||
|
||
def __init__(self, *args, **kwargs): | ||
"""Initialize Ansys Electronics Desktop specific variables.""" | ||
super(EB_AEDT, self).__init__(*args, **kwargs) | ||
|
||
def install_step(self): | ||
"""Install Ansys Electronics Desktop using its setup tool.""" | ||
licserv = os.getenv('EB_AEDT_LICENSE_SERVER') | ||
licport = os.getenv('EB_AEDT_LICENSE_SERVER_PORT') | ||
licservs = licserv.split(',') | ||
licservopt = ["-DLICENSE_SERVER%d=%s" % (i, serv) for i, serv in enumerate(licservs, 1)] | ||
redundant = len(licservs) > 1 | ||
options = " ".join([ | ||
"-i silent", | ||
"-DUSER_INSTALL_DIR=%s" % self.installdir, | ||
"-DTMP_DIR=%s" % tempfile.TemporaryDirectory().name, | ||
"-DLIBRARY_COMMON_INSTALL=1", | ||
"-DSPECIFY_LIC_CFG=1", | ||
"-DREDUNDANT_SERVERS=%d" % redundant, | ||
*licservopt, | ||
"-DSPECIFY_PORT=1", | ||
"-DLICENSE_PORT=%s" % licport, | ||
]) | ||
cmd = "./Linux/AnsysEM/Disk1/InstData/setup.exe %s" % options | ||
run_cmd(cmd, log_all=True, simple=True) | ||
|
||
def make_module_extra(self): | ||
"""Extra module entries for Ansys Electronics Desktop.""" | ||
idirs = glob.glob(os.path.join(self.installdir, 'v*/Linux*/')) | ||
if len(idirs) == 1: | ||
subdir = os.path.relpath(idirs[0], self.installdir) | ||
else: | ||
raise EasyBuildError("Failed to locate single install subdirectory v*/Linux*/") | ||
|
||
txt = super(EB_AEDT, self).make_module_extra() | ||
txt += self.module_generator.prepend_paths('PATH', subdir) | ||
txt += self.module_generator.prepend_paths('LD_LIBRARY_PATH', subdir) | ||
txt += self.module_generator.prepend_paths('LIBRARY_PATH', subdir) | ||
return txt | ||
|
||
def sanity_check_step(self): | ||
"""Custom sanity check for Ansys Electronics Desktop.""" | ||
idirs = glob.glob(os.path.join(self.installdir, 'v*/Linux*/')) | ||
if len(idirs) == 1: | ||
subdir = os.path.relpath(idirs[0], self.installdir) | ||
else: | ||
raise EasyBuildError("Failed to locate single install subdirectory v*/Linux*/") | ||
|
||
custom_paths = { | ||
'files': [os.path.join(subdir, 'ansysedt')], | ||
'dirs': [subdir], | ||
} | ||
|
||
executable = os.path.join(subdir, 'ansysedt') | ||
inpfile = os.path.join(subdir, 'Examples', 'RMxprt', 'lssm', 'sm-1.aedt') | ||
custom_commands = ['./%s -ng -BatchSolve -Distributed %s' % (executable, inpfile)] | ||
|
||
super(EB_AEDT, self).sanity_check_step(custom_paths=custom_paths, custom_commands=custom_commands) |