mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-07-23 05:31:39 +03:00
184 lines
4.1 KiB
YAML
184 lines
4.1 KiB
YAML
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
|