confluence gha

This commit is contained in:
stam 2025-04-27 19:25:01 +03:00
parent 43deca4238
commit 3a6b7ff2d9
Signed by: stam
GPG Key ID: 4F57E51F9C45F8CD
6 changed files with 900 additions and 0 deletions

View File

@ -0,0 +1,112 @@
name: EpicMorg Atlassian Confluence 04 Images
on:
workflow_dispatch:
jobs:
build-images:
name: Atlassian Confluence ${{ matrix.version }} Image
runs-on: [ ubuntu-24.04 ]
strategy:
matrix:
version: [
'4.0',
'4.0.3',
'4.0.4',
'4.0.5',
'4.0.7',
'4.1',
'4.1.10',
'4.1.2',
'4.1.3',
'4.1.4',
'4.1.5',
'4.1.6',
'4.1.7',
'4.1.9',
'4.2',
'4.2.1',
'4.2.11',
'4.2.12',
'4.2.13',
'4.2.2',
'4.2.3',
'4.2.4',
'4.2.5',
'4.2.6',
'4.2.7',
'4.2.8',
'4.3',
'4.3.1',
'4.3.2',
'4.3.3',
'4.3.5',
'4.3.6',
'4.3.7',
]
steps:
- uses: actions/checkout@v4
with:
clean: true
show-progress: true
submodules: true
- name: Log into docker registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Log into Quay.IO registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.QUAY_SERVER_KEY }}" | docker login -u "${{ secrets.QUAY_SERVER_LOGIN }}" --password-stdin "${{ secrets.QUAY_SERVER_URL }}"
- name: Check buildah
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: buildah --version
- name: Test Make
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make
- name: Install requirements.txt
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make pip
- name: "Build and Deploy Atlassian confluence ${{ matrix.version }} Image:"
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: cd linux/ecosystem/atlassian/confluence/4/${{ matrix.version }} && pwd && make build && make deploy
##################################################################################
- name: Cleanup
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make clean

View File

@ -0,0 +1,152 @@
name: EpicMorg Atlassian Confluence 05 Images
on:
workflow_dispatch:
jobs:
build-images:
name: Atlassian Confluence ${{ matrix.version }} Image
runs-on: [ ubuntu-24.04 ]
strategy:
matrix:
version: [
'5.0',
'5.0.1',
'5.0.2',
'5.0.3',
'5.1',
'5.10.0',
'5.10.1',
'5.10.2',
'5.10.3',
'5.10.4',
'5.10.6',
'5.10.7',
'5.10.8',
'5.10.9',
'5.1.1',
'5.1.2',
'5.1.3',
'5.1.4',
'5.1.5',
'5.2.3',
'5.2.5',
'5.3',
'5.3.1',
'5.3.4',
'5.4',
'5.4.1',
'5.4.2',
'5.4.3',
'5.4.4',
'5.5',
'5.5.1',
'5.5.2',
'5.5.3',
'5.5.6',
'5.5-OD-31-009',
'5.6.1',
'5.6.3',
'5.6.4',
'5.6.5',
'5.6.6',
'5.7',
'5.7.1',
'5.7.3',
'5.7.4',
'5.7.5',
'5.7.6',
'5.8.10',
'5.8.13',
'5.8.14',
'5.8.15',
'5.8.16',
'5.8.17',
'5.8.18',
'5.8.2',
'5.8.4',
'5.8.5',
'5.8.6',
'5.8.8',
'5.8.9',
'5.9.1',
'5.9.10',
'5.9.11',
'5.9.12',
'5.9.14',
'5.9.1-beta11',
'5.9.2',
'5.9.3',
'5.9.4',
'5.9.5',
'5.9.6',
'5.9.7',
'5.9.8',
'5.9.9',
]
steps:
- uses: actions/checkout@v4
with:
clean: true
show-progress: true
submodules: true
- name: Log into docker registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Log into Quay.IO registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.QUAY_SERVER_KEY }}" | docker login -u "${{ secrets.QUAY_SERVER_LOGIN }}" --password-stdin "${{ secrets.QUAY_SERVER_URL }}"
- name: Check buildah
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: buildah --version
- name: Test Make
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make
- name: Install requirements.txt
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make pip
- name: "Build and Deploy Atlassian confluence ${{ matrix.version }} Image:"
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: cd linux/ecosystem/atlassian/confluence/5/${{ matrix.version }} && pwd && make build && make deploy
##################################################################################
- name: Cleanup
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make clean

View File

@ -0,0 +1,183 @@
name: EpicMorg Atlassian Confluence 06 Images
on:
workflow_dispatch:
jobs:
build-images:
name: Atlassian Confluence ${{ matrix.version }} Image
runs-on: [ ubuntu-24.04 ]
strategy:
matrix:
version: [
'6.0.1',
'6.0.2',
'6.0.3',
'6.0.4',
'6.0.5',
'6.0.6',
'6.0.7',
'6.1.0',
'6.10.0',
'6.10.1',
'6.10.2',
'6.10.3',
'6.1.1',
'6.11.0',
'6.11.1',
'6.11.2',
'6.1.2',
'6.12.0',
'6.12.1',
'6.12.2',
'6.12.3',
'6.12.4',
'6.1.3',
'6.13.0',
'6.13.1',
'6.13.10',
'6.13.11',
'6.13.12',
'6.13.13',
'6.13.15',
'6.13.17',
'6.13.18',
'6.13.19',
'6.13.2',
'6.13.20',
'6.13.21',
'6.13.23',
'6.13.3',
'6.13.4',
'6.13.5',
'6.13.6',
'6.13.7',
'6.13.8',
'6.13.9',
'6.1.4',
'6.14.0',
'6.14.1',
'6.14.2',
'6.14.3',
'6.15.1',
'6.15.10',
'6.15.2',
'6.15.4',
'6.15.6',
'6.15.7',
'6.15.8',
'6.15.9',
'6.2.0',
'6.2.1',
'6.2.2',
'6.2.3',
'6.2.4',
'6.3.1',
'6.3.2',
'6.3.3',
'6.3.4',
'6.4.0',
'6.4.1',
'6.4.2',
'6.4.3',
'6.5.0',
'6.5.1',
'6.5.2',
'6.5.3',
'6.6.0',
'6.6.1',
'6.6.10',
'6.6.11',
'6.6.12',
'6.6.13',
'6.6.14',
'6.6.15',
'6.6.16',
'6.6.17',
'6.6.2',
'6.6.3',
'6.6.4',
'6.6.5',
'6.6.6',
'6.6.7',
'6.6.8',
'6.6.9',
'6.7.0',
'6.7.1',
'6.7.2',
'6.7.3',
'6.8.0',
'6.8.1',
'6.8.2',
'6.8.3',
'6.8.5',
'6.9.0',
'6.9.1',
'6.9.3',
]
steps:
- uses: actions/checkout@v4
with:
clean: true
show-progress: true
submodules: true
- name: Log into docker registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Log into Quay.IO registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.QUAY_SERVER_KEY }}" | docker login -u "${{ secrets.QUAY_SERVER_LOGIN }}" --password-stdin "${{ secrets.QUAY_SERVER_URL }}"
- name: Check buildah
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: buildah --version
- name: Test Make
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make
- name: Install requirements.txt
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make pip
- name: "Build and Deploy Atlassian confluence ${{ matrix.version }} Image:"
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: cd linux/ecosystem/atlassian/confluence/6/${{ matrix.version }} && pwd && make build && make deploy
##################################################################################
- name: Cleanup
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make clean

View File

@ -0,0 +1,222 @@
name: EpicMorg Atlassian Confluence 07 Images
on:
workflow_dispatch:
jobs:
build-images:
name: Atlassian Confluence ${{ matrix.version }} Image
runs-on: [ ubuntu-24.04 ]
strategy:
matrix:
version: [
'7.0.1',
'7.0.2',
'7.0.3',
'7.0.4',
'7.0.5',
'7.1.0',
'7.10.0',
'7.10.1',
'7.10.2',
'7.1.1',
'7.11.0',
'7.11.1',
'7.11.2',
'7.11.3',
'7.11.6',
'7.1.2',
'7.12.0',
'7.12.1',
'7.12.2',
'7.12.3',
'7.12.4',
'7.12.5',
'7.13.0',
'7.13.1',
'7.13.11',
'7.13.12',
'7.13.13',
'7.13.14',
'7.13.15',
'7.13.16',
'7.13.17',
'7.13.18',
'7.13.19',
'7.13.2',
'7.13.20',
'7.13.3',
'7.13.4',
'7.13.5',
'7.13.6',
'7.13.7',
'7.13.8',
'7.13.9',
'7.14.0',
'7.14.1',
'7.14.2',
'7.14.3',
'7.14.4',
'7.15.0',
'7.15.1',
'7.15.2',
'7.15.3',
'7.16.0',
'7.16.1',
'7.16.2',
'7.16.3',
'7.16.4',
'7.16.5',
'7.17.0',
'7.17.1',
'7.17.2',
'7.17.3',
'7.17.4',
'7.17.5',
'7.18.0',
'7.18.1',
'7.18.2',
'7.18.3',
'7.19.0',
'7.19.1',
'7.19.10',
'7.19.11',
'7.19.12',
'7.19.14',
'7.19.15',
'7.19.16',
'7.19.17',
'7.19.18',
'7.19.19',
'7.19.2',
'7.19.20',
'7.19.21',
'7.19.22',
'7.19.23',
'7.19.24',
'7.19.25',
'7.19.26',
'7.19.27',
'7.19.28',
'7.19.29',
'7.19.3',
'7.19.30',
'7.19.4',
'7.19.5',
'7.19.6',
'7.19.7',
'7.19.8',
'7.19.9',
'7.2.0',
'7.20.0',
'7.20.1',
'7.20.2',
'7.20.3',
'7.2.1',
'7.2.2',
'7.3.1',
'7.3.2',
'7.3.3',
'7.3.4',
'7.3.5',
'7.4.0',
'7.4.1',
'7.4.10',
'7.4.11',
'7.4.12',
'7.4.13',
'7.4.14',
'7.4.15',
'7.4.16',
'7.4.17',
'7.4.18',
'7.4.3',
'7.4.4',
'7.4.5',
'7.4.6',
'7.4.7',
'7.4.8',
'7.4.9',
'7.5.0',
'7.5.1',
'7.5.2',
'7.6.0',
'7.6.1',
'7.6.2',
'7.6.3',
'7.7.2',
'7.7.3',
'7.7.4',
'7.8.0',
'7.8.1',
'7.8.3',
'7.9.0',
'7.9.1',
'7.9.3',
]
steps:
- uses: actions/checkout@v4
with:
clean: true
show-progress: true
submodules: true
- name: Log into docker registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Log into Quay.IO registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.QUAY_SERVER_KEY }}" | docker login -u "${{ secrets.QUAY_SERVER_LOGIN }}" --password-stdin "${{ secrets.QUAY_SERVER_URL }}"
- name: Check buildah
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: buildah --version
- name: Test Make
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make
- name: Install requirements.txt
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make pip
- name: "Build and Deploy Atlassian confluence ${{ matrix.version }} Image:"
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: cd linux/ecosystem/atlassian/confluence/7/${{ matrix.version }} && pwd && make build && make deploy
##################################################################################
- name: Cleanup
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make clean

View File

@ -0,0 +1,140 @@
name: EpicMorg Atlassian Confluence 08 Images
on:
workflow_dispatch:
jobs:
build-images:
name: Atlassian Confluence ${{ matrix.version }} Image
runs-on: [ ubuntu-24.04 ]
strategy:
matrix:
version: [
'8.0.0',
'8.0.1',
'8.0.2',
'8.0.3',
'8.0.4',
'8.1.0',
'8.1.1',
'8.1.3',
'8.1.4',
'8.2.0',
'8.2.1',
'8.2.2',
'8.2.3',
'8.3.0',
'8.3.1',
'8.3.2',
'8.3.3',
'8.3.4',
'8.4.0',
'8.4.1',
'8.4.2',
'8.4.3',
'8.4.4',
'8.4.5',
'8.5.0',
'8.5.1',
'8.5.10',
'8.5.11',
'8.5.12',
'8.5.14',
'8.5.15',
'8.5.16',
'8.5.17',
'8.5.18',
'8.5.19',
'8.5.2',
'8.5.20',
'8.5.21',
'8.5.3',
'8.5.4',
'8.5.5',
'8.5.6',
'8.5.7',
'8.5.8',
'8.5.9',
'8.6.0',
'8.6.1',
'8.6.2',
'8.7.1',
'8.7.2',
'8.8.0',
'8.8.1',
'8.9.0',
'8.9.1',
'8.9.2',
'8.9.3',
'8.9.4',
'8.9.5',
'8.9.6',
'8.9.7',
'8.9.8',
]
steps:
- uses: actions/checkout@v4
with:
clean: true
show-progress: true
submodules: true
- name: Log into docker registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Log into Quay.IO registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.QUAY_SERVER_KEY }}" | docker login -u "${{ secrets.QUAY_SERVER_LOGIN }}" --password-stdin "${{ secrets.QUAY_SERVER_URL }}"
- name: Check buildah
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: buildah --version
- name: Test Make
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make
- name: Install requirements.txt
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make pip
- name: "Build and Deploy Atlassian confluence ${{ matrix.version }} Image:"
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: cd linux/ecosystem/atlassian/confluence/8/${{ matrix.version }} && pwd && make build && make deploy
##################################################################################
- name: Cleanup
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make clean

View File

@ -0,0 +1,91 @@
name: EpicMorg Atlassian Confluence 09 Images
on:
workflow_dispatch:
jobs:
build-images:
name: Atlassian Confluence ${{ matrix.version }} Image
runs-on: [ ubuntu-24.04 ]
strategy:
matrix:
version: [
'9.0.0',
'9.0.1',
'9.0.2',
'9.0.3',
'9.1.0',
'9.1.1',
'9.2.0',
'9.2.1',
'9.2.2',
'9.3.1',
'9.3.2',
'9.4.0',
]
steps:
- uses: actions/checkout@v4
with:
clean: true
show-progress: true
submodules: true
- name: Log into docker registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Log into Quay.IO registry
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: echo "${{ secrets.QUAY_SERVER_KEY }}" | docker login -u "${{ secrets.QUAY_SERVER_LOGIN }}" --password-stdin "${{ secrets.QUAY_SERVER_URL }}"
- name: Check buildah
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: buildah --version
- name: Test Make
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make
- name: Install requirements.txt
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make pip
- name: "Build and Deploy Atlassian confluence ${{ matrix.version }} Image:"
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: cd linux/ecosystem/atlassian/confluence/9/${{ matrix.version }} && pwd && make build && make deploy
##################################################################################
- name: Cleanup
uses: nick-fields/retry@v3
with:
retry_wait_seconds: 45
timeout_minutes: 600
max_attempts: 15
command: make clean