mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-04-29 16:39:26 +03:00
jira gha
This commit is contained in:
parent
68cbb22007
commit
cdbdc1831f
96
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.04.yml
vendored
Normal file
96
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.04.yml
vendored
Normal file
@ -0,0 +1,96 @@
|
||||
name: EpicMorg Atlassian Jira 04 Images
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
build-images:
|
||||
name: Atlassian Jira ${{ matrix.version }} Image
|
||||
runs-on: [ ubuntu-24.04 ]
|
||||
strategy:
|
||||
matrix:
|
||||
version: [
|
||||
'4.1.1',
|
||||
'4.1.2',
|
||||
'4.2',
|
||||
'4.2.1',
|
||||
'4.2.2',
|
||||
'4.2.3',
|
||||
'4.2.4',
|
||||
'4.3',
|
||||
'4.3.1',
|
||||
'4.3.2',
|
||||
'4.3.3',
|
||||
'4.3.4',
|
||||
'4.4',
|
||||
'4.4.1',
|
||||
'4.4.3',
|
||||
'4.4.4',
|
||||
'4.4.5'
|
||||
]
|
||||
|
||||
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/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
|
108
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.05.yml
vendored
Normal file
108
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.05.yml
vendored
Normal file
@ -0,0 +1,108 @@
|
||||
name: EpicMorg Atlassian Jira 05 Images
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
build-images:
|
||||
name: Atlassian Jira ${{ matrix.version }} Image
|
||||
runs-on: [ ubuntu-24.04 ]
|
||||
strategy:
|
||||
matrix:
|
||||
version: [
|
||||
'5.0',
|
||||
'5.0.1',
|
||||
'5.0.2',
|
||||
'5.0.3',
|
||||
'5.0.4',
|
||||
'5.0.5',
|
||||
'5.0.6',
|
||||
'5.0.7',
|
||||
'5.1',
|
||||
'5.1.1',
|
||||
'5.1.2',
|
||||
'5.1.3',
|
||||
'5.1.4',
|
||||
'5.1.5',
|
||||
'5.1.6',
|
||||
'5.1.7',
|
||||
'5.1.8',
|
||||
'5.2',
|
||||
'5.2.1',
|
||||
'5.2.10',
|
||||
'5.2.11',
|
||||
'5.2.2',
|
||||
'5.2.3',
|
||||
'5.2.4',
|
||||
'5.2.4.1',
|
||||
'5.2.5',
|
||||
'5.2.6',
|
||||
'5.2.7',
|
||||
'5.2.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 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/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
|
136
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.06.yml
vendored
Normal file
136
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.06.yml
vendored
Normal file
@ -0,0 +1,136 @@
|
||||
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
|
186
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.07.yml
vendored
Normal file
186
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.07.yml
vendored
Normal file
@ -0,0 +1,186 @@
|
||||
name: EpicMorg Atlassian Jira 07 Images
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
build-images:
|
||||
name: Atlassian Jira ${{ matrix.version }} Image
|
||||
runs-on: [ ubuntu-24.04 ]
|
||||
strategy:
|
||||
matrix:
|
||||
version: [
|
||||
'7.0.0',
|
||||
'7.0.10',
|
||||
'7.0.11',
|
||||
'7.0.2',
|
||||
'7.0.4',
|
||||
'7.0.5',
|
||||
'7.0.9',
|
||||
'7.1.0',
|
||||
'7.10.0',
|
||||
'7.10.1',
|
||||
'7.10.2',
|
||||
'7.1.0-m01',
|
||||
'7.1.1',
|
||||
'7.1.10',
|
||||
'7.11.0',
|
||||
'7.11.1',
|
||||
'7.11.2',
|
||||
'7.1.2',
|
||||
'7.12.0',
|
||||
'7.12.1',
|
||||
'7.12.3',
|
||||
'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.2',
|
||||
'7.13.3',
|
||||
'7.13.4',
|
||||
'7.13.5',
|
||||
'7.13.6',
|
||||
'7.13.8',
|
||||
'7.13.9',
|
||||
'7.1.4',
|
||||
'7.1.6',
|
||||
'7.1.7',
|
||||
'7.1.8',
|
||||
'7.1.9',
|
||||
'7.2.0',
|
||||
'7.2.1',
|
||||
'7.2.10',
|
||||
'7.2.11',
|
||||
'7.2.12',
|
||||
'7.2.13',
|
||||
'7.2.14',
|
||||
'7.2.15',
|
||||
'7.2.2',
|
||||
'7.2.3',
|
||||
'7.2.4',
|
||||
'7.2.6',
|
||||
'7.2.7',
|
||||
'7.2.8',
|
||||
'7.2.9',
|
||||
'7.3.0',
|
||||
'7.3.1',
|
||||
'7.3.2',
|
||||
'7.3.3',
|
||||
'7.3.4',
|
||||
'7.3.5',
|
||||
'7.3.6',
|
||||
'7.3.7',
|
||||
'7.3.8',
|
||||
'7.3.9',
|
||||
'7.4.0',
|
||||
'7.4.1',
|
||||
'7.4.2',
|
||||
'7.4.3',
|
||||
'7.4.4',
|
||||
'7.4.5',
|
||||
'7.4.6',
|
||||
'7.5.0',
|
||||
'7.5.1',
|
||||
'7.5.2',
|
||||
'7.5.3',
|
||||
'7.5.4',
|
||||
'7.6.0',
|
||||
'7.6.1',
|
||||
'7.6.10',
|
||||
'7.6.11',
|
||||
'7.6.12',
|
||||
'7.6.13',
|
||||
'7.6.14',
|
||||
'7.6.15',
|
||||
'7.6.16',
|
||||
'7.6.17',
|
||||
'7.6.2',
|
||||
'7.6.3',
|
||||
'7.6.4',
|
||||
'7.6.6',
|
||||
'7.6.7',
|
||||
'7.6.8',
|
||||
'7.6.9',
|
||||
'7.7.0',
|
||||
'7.7.1',
|
||||
'7.7.2',
|
||||
'7.7.4',
|
||||
'7.8.0',
|
||||
'7.8.1',
|
||||
'7.8.2',
|
||||
'7.8.4',
|
||||
'7.9.0',
|
||||
'7.9.2'
|
||||
]
|
||||
|
||||
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/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
|
218
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.08.yml
vendored
Normal file
218
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.08.yml
vendored
Normal file
@ -0,0 +1,218 @@
|
||||
name: EpicMorg Atlassian Jira 08 Images
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
build-images:
|
||||
name: Atlassian Jira ${{ matrix.version }} Image
|
||||
runs-on: [ ubuntu-24.04 ]
|
||||
strategy:
|
||||
matrix:
|
||||
version: [
|
||||
'8.0.0',
|
||||
'8.0.2',
|
||||
'8.0.3',
|
||||
'8.1.0',
|
||||
'8.10.0',
|
||||
'8.10.1',
|
||||
'8.1.1',
|
||||
'8.11.0',
|
||||
'8.11.1',
|
||||
'8.1.2',
|
||||
'8.12.0',
|
||||
'8.12.1',
|
||||
'8.12.2',
|
||||
'8.12.3',
|
||||
'8.1.3',
|
||||
'8.13.0',
|
||||
'8.13.1',
|
||||
'8.13.10',
|
||||
'8.13.11',
|
||||
'8.13.12',
|
||||
'8.13.13',
|
||||
'8.13.14',
|
||||
'8.13.15',
|
||||
'8.13.16',
|
||||
'8.13.17',
|
||||
'8.13.18',
|
||||
'8.13.19',
|
||||
'8.13.2',
|
||||
'8.13.20',
|
||||
'8.13.21',
|
||||
'8.13.22',
|
||||
'8.13.24',
|
||||
'8.13.25',
|
||||
'8.13.26',
|
||||
'8.13.27',
|
||||
'8.13.3',
|
||||
'8.13.4',
|
||||
'8.13.5',
|
||||
'8.13.6',
|
||||
'8.13.7',
|
||||
'8.13.8',
|
||||
'8.13.9',
|
||||
'8.14.0',
|
||||
'8.14.1',
|
||||
'8.15.0',
|
||||
'8.15.1',
|
||||
'8.16.0',
|
||||
'8.16.1',
|
||||
'8.16.2',
|
||||
'8.17.0',
|
||||
'8.17.1',
|
||||
'8.18.1',
|
||||
'8.18.2',
|
||||
'8.19.0',
|
||||
'8.19.1',
|
||||
'8.2.0',
|
||||
'8.20.0',
|
||||
'8.20.1',
|
||||
'8.20.10',
|
||||
'8.20.11',
|
||||
'8.20.12',
|
||||
'8.20.13',
|
||||
'8.20.14',
|
||||
'8.20.15',
|
||||
'8.20.16',
|
||||
'8.20.17',
|
||||
'8.20.19',
|
||||
'8.20.2',
|
||||
'8.20.20',
|
||||
'8.20.21',
|
||||
'8.20.22',
|
||||
'8.20.23',
|
||||
'8.20.24',
|
||||
'8.20.25',
|
||||
'8.20.26',
|
||||
'8.20.27',
|
||||
'8.20.28',
|
||||
'8.20.29',
|
||||
'8.20.3',
|
||||
'8.20.30',
|
||||
'8.20.4',
|
||||
'8.20.5',
|
||||
'8.20.6',
|
||||
'8.20.7',
|
||||
'8.20.8',
|
||||
'8.20.9',
|
||||
'8.2.1',
|
||||
'8.21.0',
|
||||
'8.21.1',
|
||||
'8.2.2',
|
||||
'8.22.0',
|
||||
'8.22.1',
|
||||
'8.22.2',
|
||||
'8.22.3',
|
||||
'8.22.4',
|
||||
'8.22.5',
|
||||
'8.22.6',
|
||||
'8.2.3',
|
||||
'8.2.4',
|
||||
'8.2.5',
|
||||
'8.2.6',
|
||||
'8.3.0',
|
||||
'8.3.1',
|
||||
'8.3.2',
|
||||
'8.3.3',
|
||||
'8.3.4',
|
||||
'8.3.5',
|
||||
'8.4.0',
|
||||
'8.4.1',
|
||||
'8.4.2',
|
||||
'8.4.3',
|
||||
'8.5.0',
|
||||
'8.5.1',
|
||||
'8.5.10',
|
||||
'8.5.11',
|
||||
'8.5.12',
|
||||
'8.5.13',
|
||||
'8.5.14',
|
||||
'8.5.15',
|
||||
'8.5.16',
|
||||
'8.5.17',
|
||||
'8.5.18',
|
||||
'8.5.19',
|
||||
'8.5.2',
|
||||
'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.7.0',
|
||||
'8.7.1',
|
||||
'8.8.0',
|
||||
'8.8.1',
|
||||
'8.9.0',
|
||||
'8.9.1'
|
||||
]
|
||||
|
||||
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/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
|
173
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.09.yml
vendored
Normal file
173
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.09.yml
vendored
Normal file
@ -0,0 +1,173 @@
|
||||
name: EpicMorg Atlassian Jira 09 Images
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
build-images:
|
||||
name: Atlassian Jira ${{ matrix.version }} Image
|
||||
runs-on: [ ubuntu-24.04 ]
|
||||
strategy:
|
||||
matrix:
|
||||
version: [
|
||||
'9.0.0',
|
||||
'9.1.0',
|
||||
'9.10.0',
|
||||
'9.10.1',
|
||||
'9.10.2',
|
||||
'9.1.1',
|
||||
'9.11.0',
|
||||
'9.11.1',
|
||||
'9.11.2',
|
||||
'9.11.3',
|
||||
'9.12.0',
|
||||
'9.12.1',
|
||||
'9.12.10',
|
||||
'9.12.11',
|
||||
'9.12.12',
|
||||
'9.12.13',
|
||||
'9.12.14',
|
||||
'9.12.15',
|
||||
'9.12.16',
|
||||
'9.12.17',
|
||||
'9.12.18',
|
||||
'9.12.19',
|
||||
'9.12.2',
|
||||
'9.12.20',
|
||||
'9.12.21',
|
||||
'9.12.22',
|
||||
'9.12.3',
|
||||
'9.12.4',
|
||||
'9.12.5',
|
||||
'9.12.6',
|
||||
'9.12.7',
|
||||
'9.12.8',
|
||||
'9.12.9',
|
||||
'9.13.0',
|
||||
'9.13.1',
|
||||
'9.14.0',
|
||||
'9.14.1',
|
||||
'9.15.2',
|
||||
'9.16.0',
|
||||
'9.16.1',
|
||||
'9.17.0',
|
||||
'9.17.1',
|
||||
'9.17.2',
|
||||
'9.17.3',
|
||||
'9.17.4',
|
||||
'9.17.5',
|
||||
'9.2.0',
|
||||
'9.2.1',
|
||||
'9.3.0',
|
||||
'9.3.1',
|
||||
'9.3.2',
|
||||
'9.3.3',
|
||||
'9.4.0',
|
||||
'9.4.1',
|
||||
'9.4.10',
|
||||
'9.4.11',
|
||||
'9.4.12',
|
||||
'9.4.14',
|
||||
'9.4.15',
|
||||
'9.4.16',
|
||||
'9.4.17',
|
||||
'9.4.18',
|
||||
'9.4.19',
|
||||
'9.4.2',
|
||||
'9.4.20',
|
||||
'9.4.21',
|
||||
'9.4.22',
|
||||
'9.4.23',
|
||||
'9.4.24',
|
||||
'9.4.25',
|
||||
'9.4.26',
|
||||
'9.4.27',
|
||||
'9.4.28',
|
||||
'9.4.29',
|
||||
'9.4.3',
|
||||
'9.4.30',
|
||||
'9.4.4',
|
||||
'9.4.5',
|
||||
'9.4.6',
|
||||
'9.4.7',
|
||||
'9.4.8',
|
||||
'9.4.9',
|
||||
'9.5.0',
|
||||
'9.5.1',
|
||||
'9.6.0',
|
||||
'9.7.0',
|
||||
'9.7.1',
|
||||
'9.7.2',
|
||||
'9.8.0',
|
||||
'9.8.1',
|
||||
'9.8.2',
|
||||
'9.9.0',
|
||||
'9.9.1',
|
||||
'9.9.2'
|
||||
]
|
||||
|
||||
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/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
|
96
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.10.yml
vendored
Normal file
96
.github/workflows/epicmorg.ecosystem.images.atlassian.jira.10.yml
vendored
Normal file
@ -0,0 +1,96 @@
|
||||
name: EpicMorg Atlassian Jira 10 Images
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
build-images:
|
||||
name: Atlassian Jira ${{ matrix.version }} Image
|
||||
runs-on: [ ubuntu-24.04 ]
|
||||
strategy:
|
||||
matrix:
|
||||
version: [
|
||||
'10.0.0',
|
||||
'10.0.1',
|
||||
'10.1.1',
|
||||
'10.1.2',
|
||||
'10.2.0',
|
||||
'10.2.1',
|
||||
'10.3.0',
|
||||
'10.3.1',
|
||||
'10.3.2',
|
||||
'10.3.3',
|
||||
'10.3.4',
|
||||
'10.3.5',
|
||||
'10.4.0',
|
||||
'10.4.1',
|
||||
'10.5.0',
|
||||
'10.5.1',
|
||||
'10.6.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 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/10/${{ 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
|
Loading…
x
Reference in New Issue
Block a user