Compare commits

...

17 Commits

Author SHA1 Message Date
LinuxServer-CI
3dcc0f02db
Bot Updating Package Versions 2026-02-13 03:35:55 +00:00
LinuxServer-CI
db38cf3efd
Bot Updating Templated Files 2026-02-13 03:31:42 +00:00
LinuxServer-CI
9947ec4262
Bot Updating Templated Files 2026-02-13 03:29:43 +00:00
LinuxServer-CI
0f7bd4a728
Bot Updating Package Versions 2026-02-07 20:32:42 +00:00
LinuxServer-CI
197d8f034f
Bot Updating Package Versions 2026-01-26 22:52:39 +00:00
LinuxServer-CI
09d8b7a4e1
Bot Updating Package Versions 2026-01-17 04:57:07 +00:00
LinuxServer-CI
b01eb3400e
Bot Updating Package Versions 2026-01-12 19:46:35 +00:00
LinuxServer-CI
a28f241993
Bot Updating Package Versions 2026-01-09 19:47:11 +00:00
LinuxServer-CI
0a749f992d
Bot Updating Package Versions 2025-12-27 20:26:55 +00:00
LinuxServer-CI
b576c63da2
Bot Updating Package Versions 2025-12-17 19:45:14 +00:00
LinuxServer-CI
5dce046d6a
Bot Updating Package Versions 2025-12-13 20:26:34 +00:00
LinuxServer-CI
21a9776532
Bot Updating Package Versions 2025-12-01 22:47:42 +00:00
LinuxServer-CI
0ffc040498
Bot Updating Package Versions 2025-11-20 02:21:31 +00:00
LinuxServer-CI
0099a5ec1d
Bot Updating Package Versions 2025-11-19 18:54:39 +00:00
LinuxServer-CI
f1390d0729
Bot Updating Templated Files 2025-11-19 18:50:36 +00:00
LinuxServer-CI
02020676c8
Bot Updating Package Versions 2025-11-08 20:22:58 +00:00
LinuxServer-CI
4a8f4ae142
Bot Updating Templated Files 2025-10-25 20:21:51 +00:00
3 changed files with 551 additions and 595 deletions

43
Jenkinsfile vendored
View File

@ -283,7 +283,7 @@ pipeline {
-v ${WORKSPACE}:/mnt \
-e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \
-e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \
ghcr.io/linuxserver/baseimage-alpine:3 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\
ghcr.io/linuxserver/baseimage-alpine:3.23 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\
apk add --no-cache python3 && \
python3 -m venv /lsiopy && \
pip install --no-cache-dir -U pip && \
@ -906,6 +906,8 @@ pipeline {
-e WEB_PATH=\"${CI_WEBPATH}\" \
-e NODE_NAME=\"${NODE_NAME}\" \
-e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \
-e COMMIT_SHA=\"${COMMIT_SHA}\" \
-e BUILD_NUMBER=\"${BUILD_NUMBER}\" \
-t ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} \
python3 test_build.py'''
}
@ -999,25 +1001,25 @@ pipeline {
environment name: 'EXIT_STATUS', value: ''
}
steps {
echo "Auto-generating release notes"
sh '''if [ "$(git tag --points-at HEAD)" != "" ]; then
echo "Existing tag points to current commit, suggesting no new LS changes"
AUTO_RELEASE_NOTES="No changes"
else
AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \
-d '{"tag_name":"'${META_TAG}'",\
"target_commitish": "master"}' \
| jq -r '.body' | sed 's|## What.s Changed||')
fi'''
echo "Pushing New tag for current commit ${META_TAG}"
sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \
-d '{"tag":"'${META_TAG}'",\
"object": "'${COMMIT_SHA}'",\
"message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to master",\
"type": "commit",\
"tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' '''
echo "Pushing New release for Tag"
sh '''#! /bin/bash
echo "Auto-generating release notes"
if [ "$(git tag --points-at HEAD)" != "" ]; then
echo "Existing tag points to current commit, suggesting no new LS changes"
AUTO_RELEASE_NOTES="No changes"
else
AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \
-d '{"tag_name":"'${META_TAG}'",\
"target_commitish": "master"}' \
| jq -r '.body' | sed 's|## What.s Changed||')
fi
echo "Pushing New tag for current commit ${META_TAG}"
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \
-d '{"tag":"'${META_TAG}'",\
"object": "'${COMMIT_SHA}'",\
"message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to master",\
"type": "commit",\
"tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}'
echo "Pushing New release for Tag"
echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json
jq -n \
--arg tag_name "$META_TAG" \
@ -1032,7 +1034,8 @@ pipeline {
"body": ("**CI Report:**\\n\\n" + $ci_url + "\\n\\n**LinuxServer Changes:**\\n\\n" + $ls_notes + "\\n\\n**Remote Changes:**\\n\\n" + $remote_notes),
"draft": false,
"prerelease": false }' > releasebody.json.done
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done
'''
}
}
// Add protection to the release branch

View File

@ -97,7 +97,7 @@ This image can be run with a non-root user. For details please [read the docs](h
To help you get started creating a container from this image you can either use docker-compose or the docker cli.
>[!NOTE]
>Unless a parameter is flaged as 'optional', it is *mandatory* and a value must be provided.
>Unless a parameter is flagged as 'optional', it is *mandatory* and a value must be provided.
### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose))

File diff suppressed because it is too large Load Diff