internal/rosa: remove legacy exec helper
Test / Hakurei (race detector) (push) Successful in 9m33s
Test / Sandbox (push) Successful in 5m27s
Test / Sandbox (race detector) (push) Successful in 8m21s
Test / ShareFS (push) Successful in 10m32s
Test / Create distribution (push) Successful in 1m51s
Test / Hakurei (push) Successful in 3m5s
Test / Flake checks (push) Successful in 1m28s
Test / Hakurei (race detector) (push) Successful in 9m33s
Test / Sandbox (push) Successful in 5m27s
Test / Sandbox (race detector) (push) Successful in 8m21s
Test / ShareFS (push) Successful in 10m32s
Test / Create distribution (push) Successful in 1m51s
Test / Hakurei (push) Successful in 3m5s
Test / Flake checks (push) Successful in 1m28s
This change also adds a fourth stage to the bootstrap machinery, offering more correct toolchain validation that works around LLVM dynamic linking flaws. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -17,9 +17,11 @@ package m4 {
|
||||
chmod +w tests/test-c32ispunct.sh && echo '#!/bin/sh' > tests/test-c32ispunct.sh
|
||||
`;
|
||||
|
||||
exec = make {};
|
||||
|
||||
toyboxEarly = true;
|
||||
exec = make {
|
||||
omitDefaults = true;
|
||||
};
|
||||
|
||||
inputs = [
|
||||
diffutils,
|
||||
|
||||
@@ -194,7 +196,9 @@ test_disable '#!/bin/sh' tests/cmp
|
||||
`;
|
||||
|
||||
toyboxEarly = true;
|
||||
exec = make {};
|
||||
exec = make {
|
||||
omitDefaults = true;
|
||||
};
|
||||
}
|
||||
|
||||
package patch {
|
||||
@@ -218,7 +222,9 @@ test_disable '#!/bin/sh' tests/need-filename
|
||||
`;
|
||||
|
||||
toyboxEarly = true;
|
||||
exec = make {};
|
||||
exec = make {
|
||||
omitDefaults = true;
|
||||
};
|
||||
}
|
||||
|
||||
package grep {
|
||||
@@ -328,6 +334,7 @@ package bash {
|
||||
|
||||
toyboxEarly = true;
|
||||
exec = make {
|
||||
omitDefaults = true;
|
||||
configure = {
|
||||
"without-bash-malloc";
|
||||
};
|
||||
@@ -364,6 +371,7 @@ test_disable 'int main(){return 0;}' gnulib-tests/test-lchown.c
|
||||
`;
|
||||
|
||||
exec = make {
|
||||
omitDefaults = true;
|
||||
configure = {
|
||||
"enable-single-binary": "symlinks";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user