[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: hydra: thinkpad: Deploy, do not reconfigure.
From: |
Andreas Enge |
Subject: |
branch master updated: hydra: thinkpad: Deploy, do not reconfigure. |
Date: |
Mon, 01 Jul 2024 11:22:00 -0400 |
This is an automated email from the git hooks/post-receive script.
andreas pushed a commit to branch master
in repository maintenance.
The following commit(s) were added to refs/heads/master by this push:
new 0a47f365 hydra: thinkpad: Deploy, do not reconfigure.
0a47f365 is described below
commit 0a47f3657a1bf6fd82f12eecbd6450b1991d0069
Author: Andreas Enge <andreas@enge.fr>
AuthorDate: Mon Jul 1 17:20:10 2024 +0200
hydra: thinkpad: Deploy, do not reconfigure.
* hydra/kranji.scm, hydra/marsiling.scm, hydra/yishun.scm,
hydra/tampines.scm: Remove files.
* hydra/thinkpad-deploy.scm: New file.
---
hydra/kranji.scm | 4 ----
hydra/marsiling.scm | 4 ----
hydra/tampines.scm | 4 ----
hydra/thinkpad-deploy.scm | 15 +++++++++++++++
hydra/yishun.scm | 4 ----
5 files changed, 15 insertions(+), 16 deletions(-)
diff --git a/hydra/kranji.scm b/hydra/kranji.scm
deleted file mode 100644
index b5f42494..00000000
--- a/hydra/kranji.scm
+++ /dev/null
@@ -1,4 +0,0 @@
-(use-modules (thinkpad))
-
-(thinkpad-os "kranji")
-
diff --git a/hydra/marsiling.scm b/hydra/marsiling.scm
deleted file mode 100644
index 23fe4916..00000000
--- a/hydra/marsiling.scm
+++ /dev/null
@@ -1,4 +0,0 @@
-(use-modules (thinkpad))
-
-(thinkpad-os "marsiling")
-
diff --git a/hydra/tampines.scm b/hydra/tampines.scm
deleted file mode 100644
index dddc560b..00000000
--- a/hydra/tampines.scm
+++ /dev/null
@@ -1,4 +0,0 @@
-(use-modules (thinkpad))
-
-(thinkpad-os "tampines")
-
diff --git a/hydra/thinkpad-deploy.scm b/hydra/thinkpad-deploy.scm
new file mode 100644
index 00000000..277bdd02
--- /dev/null
+++ b/hydra/thinkpad-deploy.scm
@@ -0,0 +1,15 @@
+(use-modules (thinkpad))
+
+(define names '("kranji" "marsiling"))
+
+(map
+ (lambda (name)
+ (machine
+ (operating-system (thinkpad-os name))
+ (environment managed-host-environment-type)
+ (configuration
+ (machine-ssh-configuration
+ (host-name (string-append name "x"))
+ (system "x86_64-linux")))))
+ names)
+
diff --git a/hydra/yishun.scm b/hydra/yishun.scm
deleted file mode 100644
index 46f28b8b..00000000
--- a/hydra/yishun.scm
+++ /dev/null
@@ -1,4 +0,0 @@
-(use-modules (thinkpad))
-
-(thinkpad-os "yishun")
-
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: hydra: thinkpad: Deploy, do not reconfigure.,
Andreas Enge <=