12 lines
235 B
Bash
12 lines
235 B
Bash
|
#!/bin/sh
|
||
|
# Copyright 2024 The Forgejo Authors
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
|
||
|
PACKAGES_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
source $PACKAGES_DIR/alpine.sh
|
||
|
|
||
|
function test_packages() {
|
||
|
run test_packages_alpine
|
||
|
}
|