Connect relup packages and SSH mirrors
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
Dockerfile -
modified
lib/openagents/forge/pushes.ex -
modified
lib/openagents/forge/relup_node.ex -
added
lib/openagents/forge/relup_package.ex -
modified
lib/openagents/runtime_config.ex -
modified
ops/forge/package-relup.sh -
modified
test/openagents/forge/mirror_watch_test.exs -
modified
test/openagents/forge/relup_deployment_test.exs -
modified
test/openagents/forge/relup_node_test.exs -
added
test/openagents/forge/relup_package_test.exs -
modified
test/openagents/runtime_config_test.exs
Diff
11 files changed, +292 -8
Dockerfile modified +1 -1
@@ -163,7 +163,7 @@ RUN sed -i \
| 163 | 163 |
|
| 164 | 164 |
|
| 165 | 165 |
|
| 166 |
|
|
| 166 |
|
|
| 167 | 167 |
|
| 168 | 168 |
|
| 169 | 169 |
|
lib/openagents/forge/pushes.ex modified +9 -2
@@ -268,9 +268,11 @@ defmodule OpenAgents.Forge.Pushes do
| 268 | 268 |
|
| 269 | 269 |
|
| 270 | 270 |
|
| 271 |
|
|
| 271 |
|
|
| 272 | 272 |
|
| 273 |
|
|
| 273 |
|
|
| 274 |
|
|
| 275 |
|
|
| 274 | 276 |
|
| 275 | 277 |
|
| 276 | 278 |
|
lib/openagents/forge/relup_node.ex modified +2
@@ -141,6 +141,7 @@ defmodule OpenAgents.Forge.RelupNode do
| 141 | 141 |
|
| 142 | 142 |
|
| 143 | 143 |
|
| 144 |
|
|
| 144 | 145 |
|
| 145 | 146 |
|
| 146 | 147 |
|
@@ -325,6 +326,7 @@ defmodule OpenAgents.Forge.RelupNode do
| 325 | 326 |
|
| 326 | 327 |
|
| 327 | 328 |
|
| 329 |
|
|
| 328 | 330 |
|
| 329 | 331 |
|
| 330 | 332 |
|
lib/openagents/forge/relup_package.ex added +155
@@ -0,0 +1,155 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 87 |
|
|
| 88 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
|
| 101 |
|
|
| 102 |
|
|
| 103 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 107 |
|
|
| 108 |
|
|
| 109 |
|
|
| 110 |
|
|
| 111 |
|
|
| 112 |
|
|
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
| 116 |
|
|
| 117 |
|
|
| 118 |
|
|
| 119 |
|
|
| 120 |
|
|
| 121 |
|
|
| 122 |
|
|
| 123 |
|
|
| 124 |
|
|
| 125 |
|
|
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 136 |
|
|
| 137 |
|
|
| 138 |
|
|
| 139 |
|
|
| 140 |
|
|
| 141 |
|
|
| 142 |
|
|
| 143 |
|
|
| 144 |
|
|
| 145 |
|
|
| 146 |
|
|
| 147 |
|
|
| 148 |
|
|
| 149 |
|
|
| 150 |
|
|
| 151 |
|
|
| 152 |
|
|
| 153 |
|
|
| 154 |
|
|
| 155 |
|
lib/openagents/runtime_config.ex modified +13 -5
@@ -956,16 +956,24 @@ defmodule OpenAgents.RuntimeConfig do
| 956 | 956 |
|
| 957 | 957 |
|
| 958 | 958 |
|
| 959 |
|
|
| 960 |
|
|
| 961 |
|
|
| 962 |
|
|
| 963 |
|
|
| 959 |
|
|
| 960 |
|
|
| 961 |
|
|
| 962 |
|
|
| 963 |
|
|
| 964 |
|
|
| 965 |
|
|
| 966 |
|
|
| 964 | 967 |
|
| 965 | 968 |
|
| 966 | 969 |
|
| 967 | 970 |
|
| 968 | 971 |
|
| 972 |
|
|
| 973 |
|
|
| 974 |
|
|
| 975 |
|
|
| 976 |
|
|
| 969 | 977 |
|
| 970 | 978 |
|
| 971 | 979 |
|
ops/forge/package-relup.sh modified +7
@@ -72,6 +72,9 @@ fi
| 72 | 72 |
|
| 73 | 73 |
|
| 74 | 74 |
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 75 | 78 |
|
| 76 | 79 |
|
| 77 | 80 |
|
@@ -113,6 +116,7 @@ env -u RELUP_FROM -u RELUP_TO -u OPENAGENTS_RELUP_PATH \
| 113 | 116 |
|
| 114 | 117 |
|
| 115 | 118 |
|
| 119 |
|
|
| 116 | 120 |
|
| 117 | 121 |
|
| 118 | 122 |
|
@@ -129,6 +133,7 @@ env -u OPENAGENTS_RELUP_PATH \
| 129 | 133 |
|
| 130 | 134 |
|
| 131 | 135 |
|
| 136 |
|
|
| 132 | 137 |
|
| 133 | 138 |
|
| 134 | 139 |
|
@@ -156,6 +161,7 @@ env \
| 156 | 161 |
|
| 157 | 162 |
|
| 158 | 163 |
|
| 164 |
|
|
| 159 | 165 |
|
| 160 | 166 |
|
| 161 | 167 |
|
@@ -190,6 +196,7 @@ cat >"$publish_root/package.json" <<EOF
| 190 | 196 |
|
| 191 | 197 |
|
| 192 | 198 |
|
| 199 |
|
|
| 193 | 200 |
|
| 194 | 201 |
|
| 195 | 202 |
|
test/openagents/forge/mirror_watch_test.exs modified +7
@@ -149,6 +149,13 @@ defmodule OpenAgents.Forge.MirrorWatchTest do
| 149 | 149 |
|
| 150 | 150 |
|
| 151 | 151 |
|
| 152 |
|
|
| 153 |
|
|
| 154 |
|
|
| 155 |
|
|
| 156 |
|
|
| 157 |
|
|
| 158 |
|
|
| 152 | 159 |
|
| 153 | 160 |
|
| 154 | 161 |
|
test/openagents/forge/relup_deployment_test.exs modified +1
@@ -221,6 +221,7 @@ defmodule OpenAgents.Forge.RelupDeploymentTest do
| 221 | 221 |
|
| 222 | 222 |
|
| 223 | 223 |
|
| 224 |
|
|
| 224 | 225 |
|
| 225 | 226 |
|
| 226 | 227 |
|
test/openagents/forge/relup_node_test.exs modified +6
@@ -6,6 +6,8 @@ defmodule OpenAgents.Forge.RelupNodeTest do
| 6 | 6 |
|
| 7 | 7 |
|
| 8 | 8 |
|
| 9 |
|
|
| 10 |
|
|
| 9 | 11 |
|
| 10 | 12 |
|
| 11 | 13 |
|
@@ -17,6 +19,7 @@ defmodule OpenAgents.Forge.RelupNodeTest do
| 17 | 19 |
|
| 18 | 20 |
|
| 19 | 21 |
|
| 22 |
|
|
| 20 | 23 |
|
| 21 | 24 |
|
| 22 | 25 |
|
@@ -30,6 +33,7 @@ defmodule OpenAgents.Forge.RelupNodeTest do
| 30 | 33 |
|
| 31 | 34 |
|
| 32 | 35 |
|
| 36 |
|
|
| 33 | 37 |
|
| 34 | 38 |
|
| 35 | 39 |
|
@@ -113,6 +117,7 @@ defmodule OpenAgents.Forge.RelupNodeTest do
| 113 | 117 |
|
| 114 | 118 |
|
| 115 | 119 |
|
| 120 |
|
|
| 116 | 121 |
|
| 117 | 122 |
|
| 118 | 123 |
|
@@ -126,6 +131,7 @@ defmodule OpenAgents.Forge.RelupNodeTest do
| 126 | 131 |
|
| 127 | 132 |
|
| 128 | 133 |
|
| 134 |
|
|
| 129 | 135 |
|
| 130 | 136 |
|
| 131 | 137 |
|
test/openagents/forge/relup_package_test.exs added +84
@@ -0,0 +1,84 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
test/openagents/runtime_config_test.exs modified +7
@@ -229,6 +229,13 @@ defmodule OpenAgents.RuntimeConfigTest do
| 229 | 229 |
|
| 230 | 230 |
|
| 231 | 231 |
|
| 232 |
|
|
| 233 |
|
|
| 234 |
|
|
| 235 |
|
|
| 236 |
|
|
| 237 |
|
|
| 238 |
|
|
| 232 | 239 |
|
| 233 | 240 |
|
| 234 | 241 |
|