the packages tests control which Forgejo version they run against so they can test a feature on version X+1 and not on version X
11 lines
235 B
Bash
11 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
|
|
}
|