diff options
Diffstat (limited to 'meta.lua')
-rw-r--r-- | meta.lua | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -20,11 +20,12 @@ builds["libressl-meta"] = { | |||
20 | produces = {}, | 20 | produces = {}, |
21 | export=true, | 21 | export=true, |
22 | } | 22 | } |
23 | local libressl="v4.0.0" -- pin a verson since master is unstable | ||
23 | for opti_k, opti_v, rel_k, rel_v, comp_k, comp_v in cartesian(optimizations, debug, compilers) do | 24 | for opti_k, opti_v, rel_k, rel_v, comp_k, comp_v in cartesian(optimizations, debug, compilers) do |
24 | builds["libressl-" .. opti_k .. "-" .. rel_k .. "-" .. comp_v] = { | 25 | builds["libressl-" .. opti_k .. "-" .. rel_k .. "-" .. comp_v] = { |
25 | image="libressl-meta", | 26 | image="libressl-meta", |
26 | requires = { | 27 | requires = { |
27 | {"git", "portable#v4.0.0"}, | 28 | {"git", "portable#" .. libressl}, |
28 | }, | 29 | }, |
29 | produces = { | 30 | produces = { |
30 | ["libssl.a"] = true, | 31 | ["libssl.a"] = true, |
@@ -38,7 +39,8 @@ for opti_k, opti_v, rel_k, rel_v, comp_k, comp_v in cartesian(optimizations, deb | |||
38 | }, | 39 | }, |
39 | timeout = 600, --Jeez this takes forever | 40 | timeout = 600, --Jeez this takes forever |
40 | env = { | 41 | env = { |
41 | CFLAGS=" " .. opti_v .. " " .. rel_v | 42 | CFLAGS=" " .. opti_v .. " " .. rel_v, |
43 | LIBRESSL_VERSION=libressl | ||
42 | }, | 44 | }, |
43 | } | 45 | } |
44 | end | 46 | end |