]> gitweb.factorcode.org Git - factor.git/blob - extra/mason/release/branch/branch-tests.factor
10c177e1b80c7998399b09eecf40cb28d804a417
[factor.git] / extra / mason / release / branch / branch-tests.factor
1 IN: mason.release.branch.tests
2 USING: mason.release.branch mason.config tools.test namespaces
3 system ;
4
5 [ { "git" "push" "-f" "joe@blah.com:/my/git" "master:clean-linux-x86-32" } ] [
6     [
7         "joe" branch-username set
8         "blah.com" branch-host set
9         "/my/git" branch-directory set
10         linux target-os set
11         x86.32 target-cpu set
12         push-to-clean-branch-cmd
13     ] with-scope
14 ] unit-test
15
16 [ { "scp" "boot.windows-x86.64.image" "joe@blah.com:/stuff/clean/windows-x86-64" } ] [
17     [
18         "scp" scp-command set
19         "joe" image-username set
20         "blah.com" image-host set
21         "/stuff/clean" image-directory set
22         windows target-os set
23         x86.64 target-cpu set
24         upload-clean-image-cmd
25     ] with-scope
26 ] unit-test