mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-07-23 05:31:39 +03:00
137 lines
3.2 KiB
YAML
137 lines
3.2 KiB
YAML
name: EpicMorg Atlassian Jira 06 Images
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
build-images:
|
|
name: Atlassian Jira ${{ matrix.version }} Image
|
|
runs-on: [ ubuntu-24.04 ]
|
|
strategy:
|
|
matrix:
|
|
version: [
|
|
'6.0',
|
|
'6.0.1',
|
|
'6.0.2',
|
|
'6.0.3',
|
|
'6.0.4',
|
|
'6.0.5',
|
|
'6.0.6',
|
|
'6.0.7',
|
|
'6.0.8',
|
|
'6.1',
|
|
'6.1.1',
|
|
'6.1.2',
|
|
'6.1.3',
|
|
'6.1.4',
|
|
'6.1.5',
|
|
'6.1.6',
|
|
'6.1.7',
|
|
'6.1.8',
|
|
'6.1.9',
|
|
'6.2',
|
|
'6.2.1',
|
|
'6.2.2',
|
|
'6.2.3',
|
|
'6.2.4',
|
|
'6.2.5',
|
|
'6.2.6',
|
|
'6.2.7',
|
|
'6.3',
|
|
'6.3.1',
|
|
'6.3.10',
|
|
'6.3.11',
|
|
'6.3.12',
|
|
'6.3.13',
|
|
'6.3.14',
|
|
'6.3.15',
|
|
'6.3.3',
|
|
'6.3.4',
|
|
'6.3.5',
|
|
'6.3.6',
|
|
'6.3.7',
|
|
'6.3.8',
|
|
'6.3.9',
|
|
'6.4',
|
|
'6.4.1',
|
|
'6.4.10',
|
|
'6.4.11',
|
|
'6.4.12',
|
|
'6.4.13',
|
|
'6.4.14',
|
|
'6.4.2',
|
|
'6.4.3',
|
|
'6.4.4',
|
|
'6.4.5',
|
|
'6.4.6',
|
|
'6.4.7',
|
|
'6.4.8',
|
|
'6.4.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 jira ${{ matrix.version }} Image:"
|
|
uses: nick-fields/retry@v3
|
|
with:
|
|
retry_wait_seconds: 45
|
|
timeout_minutes: 600
|
|
max_attempts: 15
|
|
command: cd linux/ecosystem/atlassian/jira/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
|