fdca05487c
Test / Create distribution (push) Successful in 55s
Test / Sandbox (push) Successful in 2m53s
Test / ShareFS (push) Successful in 3m58s
Test / Sandbox (race detector) (push) Successful in 5m30s
Test / Hakurei (race detector) (push) Successful in 7m8s
Test / Hakurei (push) Successful in 2m20s
Test / Flake checks (push) Successful in 1m5s
This change also disables the bootstrap test because 4.4.0 broke the bootstrap test, and it makes little sense re-testing what has already succeeded. Signed-off-by: Ophestra <cat@gensokyo.uk>
44 lines
953 B
Go
44 lines
953 B
Go
package cmake {
|
|
description = "cross-platform, open-source build system";
|
|
website = "https://cmake.org";
|
|
anitya = 306;
|
|
|
|
version# = "4.4.0";
|
|
source = remoteGitHubRelease {
|
|
suffix = "Kitware/CMake";
|
|
tag = "v"+version;
|
|
name = "cmake-"+version+".tar.gz";
|
|
checksum = "ZL0Y19_mSJWsl3dMjRRQJAaCvl4_PqbwpgUC1aBA-cdVdrK_gt4ylpUM2GMoQMku";
|
|
compress = gzip;
|
|
};
|
|
patches = [ "disable-broken-tests-musl.patch" ];
|
|
|
|
// test suite expects writable source tree
|
|
writable = true;
|
|
|
|
// expected to be writable in the copy made during bootstrap
|
|
chmod = true;
|
|
|
|
exec = make {
|
|
omitDefaults = true;
|
|
|
|
configureName = "/usr/src/cmake/bootstrap";
|
|
configure = {
|
|
"prefix": "/system";
|
|
"parallel": jobsE;
|
|
"--";
|
|
"-DCMAKE_USE_OPENSSL": "OFF";
|
|
"-DCMake_TEST_NO_NETWORK": "ON";
|
|
"-DCMake_TEST_BOOTSTRAP": "OFF";
|
|
};
|
|
|
|
check = [
|
|
"CTEST_OUTPUT_ON_FAILURE=1",
|
|
"CTEST_PARALLEL_LEVEL=128",
|
|
"test",
|
|
];
|
|
};
|
|
|
|
inputs = [ kernel-headers ];
|
|
}
|