2022-09-13 13:54:41 +03:00
|
|
|
name: EpicMorg Debian 11 Images
|
|
|
|
|
|
|
|
on:
|
|
|
|
# push:
|
|
|
|
# branches:
|
|
|
|
# - 'master'
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 1,3,5'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build-10-images:
|
2024-08-12 00:46:46 +03:00
|
|
|
name: Build EpicMorg Debian 11 LTS Images
|
|
|
|
runs-on: ubuntu-24.04
|
2022-09-13 13:54:41 +03:00
|
|
|
|
|
|
|
steps:
|
2024-02-10 00:44:19 +03:00
|
|
|
- uses: actions/checkout@v4
|
2022-09-13 13:54:41 +03:00
|
|
|
- name: Log into registry
|
|
|
|
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
|
|
|
|
|
|
|
|
- name: Test Make
|
|
|
|
run: make
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: Install requirements.txt
|
|
|
|
run: make pip
|
|
|
|
|
|
|
|
- name: "Build and Deploy Debian 11 LTS slim Image:"
|
2022-09-13 13:54:41 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/slim && pwd && make build && make deploy
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS main Image:"
|
2022-09-13 13:54:41 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/main && pwd && make build && make deploy
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS develop Image:"
|
2022-09-13 13:54:41 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/develop && pwd && make build && make deploy
|
2024-06-21 16:10:08 +03:00
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
- name: Cleanup
|
|
|
|
run: make docker-clean
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk6 Image:"
|
2022-09-13 13:54:41 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk6 && pwd && make build && make deploy
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk7 Image:"
|
2022-09-13 13:54:41 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk7 && pwd && make build && make deploy
|
2024-06-21 16:10:08 +03:00
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
- name: Cleanup
|
|
|
|
run: make docker-clean
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk8 Image:"
|
2022-09-13 13:54:41 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk8 && pwd && make build && make deploy
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk11 Image:"
|
2022-09-13 13:54:41 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk11 && pwd && make build && make deploy
|
2023-11-07 22:35:18 +03:00
|
|
|
|
2024-06-21 16:10:08 +03:00
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
- name: Cleanup
|
|
|
|
run: make docker-clean
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk16 Image:"
|
2024-06-22 13:32:53 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk16 && pwd && make build && make deploy
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk17 Image:"
|
2022-09-13 13:54:41 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk17 && pwd && make build && make deploy
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk18 Image:"
|
2022-09-13 13:54:41 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk18 && pwd && make build && make deploy
|
|
|
|
|
2024-06-21 16:10:08 +03:00
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
- name: Cleanup
|
|
|
|
run: make docker-clean
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk19 Image:"
|
2023-07-25 21:08:37 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk19 && pwd && make build && make deploy
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk20 Image:"
|
2023-07-25 21:08:37 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk20 && pwd && make build && make deploy
|
2022-09-13 13:54:41 +03:00
|
|
|
|
2024-06-21 16:10:08 +03:00
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
- name: Cleanup
|
|
|
|
run: make docker-clean
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk21 Image:"
|
2023-11-07 22:35:18 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk21 && pwd && make build && make deploy
|
|
|
|
|
2024-08-12 00:46:46 +03:00
|
|
|
- name: "Build and Deploy Debian 11 LTS jdk22 Image:"
|
2024-06-22 13:32:53 +03:00
|
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk22 && pwd && make build && make deploy
|
|
|
|
|
2022-09-13 13:54:41 +03:00
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
- name: Cleanup
|
|
|
|
run: make docker-clean
|