Skip to content

Commit

Permalink
Add new ppc64le raptor machine
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbogo authored and fauust committed Oct 23, 2023
1 parent ad4ccb3 commit a19267e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions locks.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
p9_rhel8_bbw1_lock = util.MasterLock('p9_rhel8_bbw1_lock', maxCount=6)
p9_rhel7_bbw1_lock = util.MasterLock('p9_rhel7_bbw1_lock', maxCount=6)
p9_db_bbw1_lock = util.MasterLock('p9_db_bbw1_lock', maxCount=8)
p9_raptor_bbw1_lock = util.MasterLock('p9_raptor_bbw1_lock', maxCount=6)
aarch_bbw1_lock = util.MasterLock('aarch64_bbw1_lock', maxCount=2)
aarch_bbw2_lock = util.MasterLock('aarch64_bbw2_lock', maxCount=2)
aarch_bbw3_lock = util.MasterLock('aarch64_bbw3_lock', maxCount=2)
Expand Down Expand Up @@ -71,6 +72,8 @@ def getLocks(props):
locks = locks + [p9_rhel7_bbw1_lock.access('counting')]
if 'ppc64le-db-bbw1-docker' in worker_name:
locks = locks + [p9_db_bbw1_lock.access('counting')]
if 'ppc64le-raptor-bbw1-docker' in worker_name:
locks = locks + [p9_raptor_bbw1_lock.access('counting')]
if 'aarch64-bbw1-docker' in worker_name:
locks = locks + [aarch_bbw1_lock.access('counting')]
if 'aarch64-bbw2-docker' in worker_name:
Expand Down
2 changes: 2 additions & 0 deletions master-private.cfg-sample
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ private["master-variables"] = {
'ppc64le-rhel8-bbw1',
'ppc64le-rhel7-bbw1',
'ppc64le-db-bbw1',
'ppc64le-raptor-bbw1',
],
"s390x": [
's390x-bbw1',
Expand Down Expand Up @@ -65,6 +66,7 @@ private["docker_workers"]= {
"ppc64le-rhel8-bbw1-docker":"tcp://IP_address:port",
"ppc64le-rhel7-bbw1-docker":"tcp://IP_address:port",
"ppc64le-db-bbw1-docker":"tcp://IP_address:port",
"ppc64le-raptor-bbw1-docker":"tcp://IP_address:port",
"aarch64-bbw1-docker":"tcp://IP_address:port",
"aarch64-bbw2-docker":"tcp://IP_address:port",
"aarch64-bbw3-docker":"tcp://IP_address:port",
Expand Down

0 comments on commit a19267e

Please sign in to comment.