Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add build steps for rakudo and niecza to components.json. Currently t…
…he rakudo build steps are vastly more paranoid than niecza's.
  • Loading branch information
Geoffrey Broadwell committed Oct 21, 2012
1 parent 21065ad commit a880c85
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions components.json
Expand Up @@ -2,11 +2,22 @@
"rakudo": {
"name": "rakudo",
"repo_url": "git://github.com/rakudo/rakudo.git",
"release_tags": "^ 20\\d\\d \\D \\d\\d [\\.\\d+]? $"
"release_tags": "^ 20\\d\\d \\D \\d\\d [\\.\\d+]? $",
"build_steps": [
[ "make", "realclean" ],
[ "git", "clean", "-dxf" ],
[ "rm", "-rf", "install", "nqp", "parrot" ],
[ "perl", "Configure.pl", "--gen-parrot" ],
[ "make" ],
[ "make", "install" ]
]
},
"niecza": {
"name": "niecza",
"repo_url": "git://github.com/sorear/niecza.git",
"release_tags": "^v\\d+$"
"release_tags": "^v\\d+$",
"build_steps": [
[ "make" ]
]
}
}

0 comments on commit a880c85

Please sign in to comment.