Skip to content

Commit b1fd39f

Browse files
authored
Merge pull request #55 from linuxserver/nightly-1000papercuts
rebase nightly to build commits from upstream 1000papercuts branch
2 parents c24fbf1 + 9ac3fe1 commit b1fd39f

7 files changed

Lines changed: 13 additions & 11 deletions

File tree

.github/workflows/external_trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
3030
echo "> External trigger running off of nightly branch. To disable this trigger, add \`mylar3_nightly\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
3131
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
32-
EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/mylar3/mylar3/commits/python3-dev" | jq -r '. | .sha' | cut -c1-8)
32+
EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/mylar3/mylar3/commits/1000papercuts" | jq -r '. | .sha' | cut -c1-8)
3333
echo "Type is \`github_commit\`" >> $GITHUB_STEP_SUMMARY
3434
if grep -q "^mylar3_nightly_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
3535
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN \
3232
zlib1g-dev && \
3333
echo "**** install mylar3 ****" && \
3434
if [ -z ${MYLAR3_RELEASE+x} ]; then \
35-
MYLAR3_RELEASE=$(curl -sX GET https://api.github.com/repos/mylar3/mylar3/commits/python3-dev \
35+
MYLAR3_RELEASE=$(curl -sX GET https://api.github.com/repos/mylar3/mylar3/commits/1000papercuts \
3636
| jq -r '.sha' | cut -c1-8); \
3737
fi && \
3838
mkdir /app/mylar3 && \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN \
3232
zlib1g-dev && \
3333
echo "**** install mylar3 ****" && \
3434
if [ -z ${MYLAR3_RELEASE+x} ]; then \
35-
MYLAR3_RELEASE=$(curl -sX GET https://api.github.com/repos/mylar3/mylar3/commits/python3-dev \
35+
MYLAR3_RELEASE=$(curl -sX GET https://api.github.com/repos/mylar3/mylar3/commits/1000papercuts \
3636
| jq -r '.sha' | cut -c1-8); \
3737
fi && \
3838
mkdir /app/mylar3 && \

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pipeline {
1919
DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat')
2020
QUAYIO_API_TOKEN=credentials('quayio-repo-api-token')
2121
GIT_SIGNING_KEY=credentials('484fbca6-9a4f-455e-b9e3-97ac98785f5f')
22-
EXT_GIT_BRANCH = 'python3-dev'
22+
EXT_GIT_BRANCH = '1000papercuts'
2323
EXT_USER = 'mylar3'
2424
EXT_REPO = 'mylar3'
2525
BUILD_VERSION_ARG = 'MYLAR3_RELEASE'

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ This image provides various versions that are available via tags. Please read th
6060

6161
| Tag | Available | Description |
6262
| :----: | :----: |--- |
63-
| latest || Stable Mylar3 releases |
64-
| nightly || Commits to Mylar3 `python3-dev` branch |
65-
| unstable || Commits to Mylar3 `1000papercuts` branch |
63+
| latest || Commits to Mylar3 `python3-dev` branch |
64+
| nightly || Commits to Mylar3 `1000papercuts` branch (ubuntu) |
65+
| unstable || Commits to Mylar3 `1000papercuts` branch (alpine) |
6666

6767
## Application Setup
6868

@@ -289,6 +289,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
289289

290290
## Versions
291291

292+
* **19.02.26:** - Rebase `nightly` tag to build commits from upstream `1000papercuts` branch.
292293
* **05.02.26:** - Release `unstable` tag based on commits to upstream `1000papercuts` branch.
293294
* **10.11.25:** - Rebase to Ubuntu Jammy.
294295
* **23.12.23:** - Rebase to Alpine 3.19.

jenkins-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ release_type: prerelease
77
release_tag: nightly
88
ls_branch: nightly
99
repo_vars:
10-
- EXT_GIT_BRANCH = 'python3-dev'
10+
- EXT_GIT_BRANCH = '1000papercuts'
1111
- EXT_USER = 'mylar3'
1212
- EXT_REPO = 'mylar3'
1313
- BUILD_VERSION_ARG = 'MYLAR3_RELEASE'

readme-vars.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ available_architectures:
1313
# development version
1414
development_versions: true
1515
development_versions_items:
16-
- {tag: "latest", desc: "Stable Mylar3 releases"}
17-
- {tag: "nightly", desc: "Commits to Mylar3 `python3-dev` branch"}
18-
- {tag: "unstable", desc: "Commits to Mylar3 `1000papercuts` branch"}
16+
- {tag: "latest", desc: "Commits to Mylar3 `python3-dev` branch"}
17+
- {tag: "nightly", desc: "Commits to Mylar3 `1000papercuts` branch (ubuntu)"}
18+
- {tag: "unstable", desc: "Commits to Mylar3 `1000papercuts` branch (alpine)"}
1919
# container parameters
2020
param_container_name: "{{ project_name }}"
2121
param_usage_include_vols: true
@@ -79,6 +79,7 @@ init_diagram: |
7979
"mylar3:nightly" <- Base Images
8080
# changelog
8181
changelogs:
82+
- {date: "19.02.26:", desc: "Rebase `nightly` tag to build commits from upstream `1000papercuts` branch."}
8283
- {date: "05.02.26:", desc: "Release `unstable` tag based on commits to upstream `1000papercuts` branch."}
8384
- {date: "10.11.25:", desc: "Rebase to Ubuntu Jammy."}
8485
- {date: "23.12.23:", desc: "Rebase to Alpine 3.19."}

0 commit comments

Comments
 (0)