Another fix

pull/6574/head^2
Uruk 3 months ago
parent 045e65cab1
commit e2e82f6040

@ -81,7 +81,13 @@ jobs:
with:
framework: ${{ env.FRAMEWORK }}
runtime: osx-x64
- name: Publish freebsd-x64 Test Artifact
uses: ./.github/actions/publish-test-artifact
with:
framework: ${{ env.FRAMEWORK }}
runtime: freebsd-x64
# Build Artifacts (grouped by OS)
- name: Publish FreeBSD Artifact

@ -25,19 +25,16 @@ done
MONO_VERSIONS=""
# Future versions
MONO_VERSIONS="$MONO_VERSIONS 6.10=preview-xenial"
MONO_VERSIONS="$MONO_VERSIONS 8.0=preview-jammy"
# Semi-Supported versions
MONO_VERSIONS="$MONO_VERSIONS 6.8 6.6 6.4 6.0"
MONO_VERSIONS="$MONO_VERSIONS 8.0"
# Supported versions
MONO_VERSIONS="$MONO_VERSIONS 5.20 5.18"
# Legacy unsupported versions (but appear to work)
MONO_VERSIONS="$MONO_VERSIONS 5.16 5.14 5.12"
MONO_VERSIONS="$MONO_VERSIONS 8.0"
# Legacy unsupported versions
MONO_VERSIONS="$MONO_VERSIONS 5.10 5.8 5.4 5.0"
MONO_VERSIONS="$MONO_VERSIONS <8.0"
#MONO_VERSIONS="$MONO_VERSIONS 4.8=stable-wheezy/snapshots/4.8"
if [ "$opt_version" != "" ]; then
@ -59,7 +56,7 @@ prepOne() {
docker build -t sonarr-test-$MONO_VERSION --build-arg MONO_VERSION=$MONO_VERSION --build-arg MONO_URL=$MONO_URL --file mono/complete/Dockerfile mono
fi
if [ "$opt_mode" != "complete" ] && [ "$MONO_VERSION" != "5.0" ]; then
if [ "$opt_mode" != "complete" ] && [ "$MONO_VERSION" != "8.0" ]; then
docker build -t sonarr-test-$MONO_VERSION-sonarr --build-arg MONO_VERSION=$MONO_VERSION --build-arg MONO_URL=$MONO_URL --file mono/sonarr/Dockerfile mono
fi
}

@ -10,6 +10,8 @@ elif [ "$PLATFORM" = "Linux" ]; then
RUNTIME="linux-x64"
elif [ "$PLATFORM" = "Mac" ]; then
RUNTIME="osx-x64"
elif [ "$PLATFORM" = "FreeBSD" ]; then
RUNTIME="freebsd-x64"
else
echo "Platform must be provided as first argument: Windows, Linux or Mac"
exit 1

Loading…
Cancel
Save