diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-08-16 14:30:57 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-10-17 00:58:45 -0500 |
commit | 61e81c07dcfd7e671d004a300a9cfdff68a052f1 (patch) | |
tree | 6b234ceca19c096b9fe94024af4e265800b8581d /bootstrap/rust-1.78/APKBUILD | |
parent | 29e11a1231ed159572aa4e6c64fd9cdac97f7c03 (diff) | |
download | packages-61e81c07dcfd7e671d004a300a9cfdff68a052f1.tar.gz packages-61e81c07dcfd7e671d004a300a9cfdff68a052f1.tar.bz2 packages-61e81c07dcfd7e671d004a300a9cfdff68a052f1.tar.xz packages-61e81c07dcfd7e671d004a300a9cfdff68a052f1.zip |
bootstrap/rusts: Don't check after all
It wastes about 10-15 minutes per build. The tests will fail virtually
everywhere until the late 70s (~76 for x86_64, ~78 for ppc64) anyway.
I had originally thought it would be good to have a list of the
failures present in logs in case we had other failures, but if we do we
can always run them ourselves. No reason to waste hours of machine time
for test results we throw away anyway.
Diffstat (limited to 'bootstrap/rust-1.78/APKBUILD')
-rw-r--r-- | bootstrap/rust-1.78/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/rust-1.78/APKBUILD b/bootstrap/rust-1.78/APKBUILD index 68d5eeae6..b22288f10 100644 --- a/bootstrap/rust-1.78/APKBUILD +++ b/bootstrap/rust-1.78/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="The Rust Programming Language" url="https://www.rust-lang.org" arch="all" -#options="!check" # Failures on aarch64 and ppc64. +options="!check" # Failures on aarch64 and ppc64. license="(Apache-2.0 OR MIT) AND (NCSA OR MIT) AND BSD-2-Clause AND BSD-3-Clause" depends="$pkgname-std=$pkgver-r$pkgrel gcc musl-dev" makedepends=" |