diff options
author | Eduardo Julian | 2022-04-08 01:49:29 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-04-08 01:49:29 -0400 |
commit | e5e4c2aff562e5c01fefb808d1d68a40f29c9cc5 (patch) | |
tree | 6b56a158a19debc0d3cd1d98e88e2ee91ed8a823 /stdlib/source/test/aedifex | |
parent | c85697eee8ce3dac5480a3ba2b31cc4943e1d8e6 (diff) |
Can now deploy releases with Aedifex.
Diffstat (limited to 'stdlib/source/test/aedifex')
-rw-r--r-- | stdlib/source/test/aedifex/command/deploy.lux | 9 | ||||
-rw-r--r-- | stdlib/source/test/aedifex/profile.lux | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/stdlib/source/test/aedifex/command/deploy.lux b/stdlib/source/test/aedifex/command/deploy.lux index 0aec02f72..7ce8710c9 100644 --- a/stdlib/source/test/aedifex/command/deploy.lux +++ b/stdlib/source/test/aedifex/command/deploy.lux @@ -31,8 +31,10 @@ ["[0]" export]]]] [world ["[0]" file] - ["[0]" program {"+" Program}]]]] + ["[0]" program {"+" Program}] + ["[0]" shell]]]] [// + ["$[0]" build] ["$[0]" install] ["$[0]" version] [// @@ -56,9 +58,10 @@ Artifact ///.Profile (Async (Try Text))) (do ///action.monad - [.let [console ($version.echo "")] + [.let [console ($version.echo "") + shell (shell.async ($build.bad_shell []))] _ ($install.make_sources! fs (the ///.#sources profile)) - _ (/.do! console local remote fs artifact profile)] + _ (/.do! program shell console local remote fs artifact profile)] (# console read_line []))) (def: .public test diff --git a/stdlib/source/test/aedifex/profile.lux b/stdlib/source/test/aedifex/profile.lux index aa2159929..e674942e0 100644 --- a/stdlib/source/test/aedifex/profile.lux +++ b/stdlib/source/test/aedifex/profile.lux @@ -98,8 +98,9 @@ (Random /.Info) ($_ random.and (random.maybe (random.ascii/alpha 1)) + (random.maybe (random.ascii/alpha 2)) (random.maybe ..scm) - (random.maybe (random.ascii/alpha 1)) + (random.maybe (random.ascii/alpha 3)) (..list_of ..license) (random.maybe ..organization) (..list_of ..developer) |