mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
hostname now set by socket
This commit is contained in:
parent
b7dcf9f1b3
commit
e57453c098
1 changed files with 2 additions and 1 deletions
|
|
@ -6,6 +6,7 @@ import os
|
|||
import shutil
|
||||
import re
|
||||
import glob
|
||||
import socket
|
||||
from subprocess import call
|
||||
from collections import OrderedDict
|
||||
from optparse import OptionParser
|
||||
|
|
@ -232,7 +233,7 @@ pwd = os.environ['PWD']
|
|||
ctest_vars = {
|
||||
'source_dir' : pwd + '/../src',
|
||||
'build_dir' : pwd + '/build',
|
||||
'host_name' : 'neutronbalance',
|
||||
'host_name' : socket.gethostname(),
|
||||
'dashboard' : dash,
|
||||
'submit' : submit,
|
||||
'update' : update,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue