diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-06-14 10:35:27 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-06-14 10:35:27 +0300 | 
| commit | 2876847d500b7b734fa290e6dc9aa151de9f9a48 (patch) | |
| tree | 4df2ef7db70c3cda6729da417f08a4039e8fc24c /docker/alpine | |
| parent | 686d477242890c575024962188dd50c06160f2a3 (diff) | |
docker: Do not require checks for libyang Alpine Linux package build
Since Alpine Linux 3.20, we get this:
>>> WARNING: libyang: APKBUILD does not run any tests!
    Alpine policy will soon require that packages have any relevant testsuites run during the build process.
    To fix, either define a check() function, or declare !check in $options to indicate the package does not have a testsuite.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'docker/alpine')
| -rwxr-xr-x | docker/alpine/libyang/APKBUILD | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/docker/alpine/libyang/APKBUILD b/docker/alpine/libyang/APKBUILD index 6973fd62d8..7979ee1b1e 100755 --- a/docker/alpine/libyang/APKBUILD +++ b/docker/alpine/libyang/APKBUILD @@ -11,6 +11,7 @@ makedepends="bison cmake cmocka-dev flex pcre2-dev"  checkdepends="expect grep shunit2"  subpackages="$pkgname-dev $pkgname-doc"  source="$pkgname-$pkgver.tar.gz::https://github.com/CESNET/libyang/archive/v$pkgver.tar.gz" +options="!check"  # secfixes:  #   1.0.215-r1:  | 
