Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ansible-cluster-config
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SCL
ansible-cluster-config
Commits
69fabbf7
Verified
Commit
69fabbf7
authored
1 year ago
by
Reza Housseini
Browse files
Options
Downloads
Patches
Plain Diff
feat: add altair-edem installation instructions
parent
f1c1b901
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
cluster_config/software.yaml
+5
-4
5 additions, 4 deletions
cluster_config/software.yaml
install_altair_edem.yaml
+29
-0
29 additions, 0 deletions
install_altair_edem.yaml
install_guix.yaml
+2
-2
2 additions, 2 deletions
install_guix.yaml
install_software.yaml
+12
-5
12 additions, 5 deletions
install_software.yaml
with
48 additions
and
11 deletions
cluster_config/software.yaml
+
5
−
4
View file @
69fabbf7
...
...
@@ -93,7 +93,8 @@ gurobi:
-
version
:
9.5.2
prefix
:
gurobi
source
:
gurobi9.5.2_linux64.tar.gz
# TODO:
# Altair EDEM
# eSankey
altair_edem
:
-
version
:
2021.1
prefix
:
altair-edem
source
:
AltairEDEM2021.1_linux64.bin
This diff is collapsed.
Click to expand it.
install_altair_edem.yaml
0 → 100644
+
29
−
0
View file @
69fabbf7
-
name
:
Run interactive installer
ansible.builtin.expect
:
command
:
"
{{
installer
}}"
responses
:
"
CHOOSE
LOCALE
BY
NUMBER:
"
:
"
5"
"
TO
END:
"
:
"
0"
'
DO
YOU
ACCEPT
THE
TERMS
OF
THIS
LICENSE
AGREEMENT\?
\(Y/N\):
'
:
"
Y"
"
:
"
:
"
{{
install_prefix
}}"
'
IS
THIS
CORRECT\?
\(Y/N\):
'
:
"
Y"
"
PRESS
<ENTER>
TO
CONTINUE:
"
:
'
\n'
"
PRESS
<ENTER>
TO
EXIT
THE
INSTALLER:
"
:
'
\n'
creates
:
"
{{
install_prefix
}}/altair/EDEM{{
release.version
}}/bin"
-
name
:
Create module file
ansible.builtin.copy
:
dest
:
"
{{
install_prefix
}}/module-file"
content
:
|
#%Module1.0
prepend-path -d ":" PATH "{{ install_prefix }}/altair/EDEM{{ release.version }}/bin"
prepend-path -d ":" LD_LIBRARY_PATH "{{ install_prefix }}/altair/EDEM{{ release.version }}/lib"
-
name
:
Create module directory
ansible.builtin.file
:
path
:
"
{{
prop_modules_path
}}/{{
release.prefix
}}"
state
:
directory
mode
:
'
0755'
-
name
:
Create symbolic link to module-file
ansible.builtin.file
:
src
:
"
{{
install_prefix
}}/module-file"
dest
:
"
{{
prop_modules_path
}}//{{
release.prefix
}}/{{
release.version
}}"
state
:
link
This diff is collapsed.
Click to expand it.
install_guix.yaml
+
2
−
2
View file @
69fabbf7
...
...
@@ -33,7 +33,7 @@
dest
:
/etc/profile.d/guix-modules.sh
content
:
|
export GUIX_EXTENSIONS_PATH="$HOME/.guix-profile/share/guix/extensions"
-
name
:
install needed dnf dependencies for matlab
-
name
:
install needed dnf dependencies for matlab
and altair-edem
ansible.builtin.shell
:
cmd
:
dnf install alsa-lib
cmd
:
dnf install
-y
alsa-lib
python3-pexpect
This diff is collapsed.
Click to expand it.
install_software.yaml
+
12
−
5
View file @
69fabbf7
...
...
@@ -80,12 +80,19 @@
# loop: "{{ carnot_toolbox }}"
# loop_control:
# loop_var: release
-
name
:
Install gurobi
#- name: Install gurobi
# vars:
# archive: "{{ asset_path }}/{{ release.prefix }}/{{ release.source }}"
# install_prefix: "{{ install_path }}/{{ release.prefix }}/{{ release.version }}"
# ansible.builtin.include_tasks: install_gurobi.yaml
# loop: "{{ gurobi }}"
# loop_control:
# loop_var: release
-
name
:
Install Altair EDEM
vars
:
archive
:
"
{{
asset_path
}}/{{
release.prefix
}}/{{
release.source
}}"
installer
:
"
{{
asset_path
}}/{{
release.prefix
}}/{{
release.source
}}"
install_prefix
:
"
{{
install_path
}}/{{
release.prefix
}}/{{
release.version
}}"
tmp_prefix
:
"
/tmp/{{
release.prefix
}}_{{
release.version
}}"
ansible.builtin.include_tasks
:
install_gurobi.yaml
loop
:
"
{{
gurobi
}}"
ansible.builtin.include_tasks
:
install_altair_edem.yaml
loop
:
"
{{
altair_edem
}}"
loop_control
:
loop_var
:
release
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment