mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-27 07:05:41 +03:00
105 lines
3.8 KiB
YAML
105 lines
3.8 KiB
YAML
name: EpicMorg Debian 11 Images
|
|
|
|
on:
|
|
# push:
|
|
# branches:
|
|
# - 'master'
|
|
schedule:
|
|
- cron: '0 0 * * 1,3,5'
|
|
|
|
jobs:
|
|
|
|
build-10-images:
|
|
name: Build EpicMorg Debian 11 Images
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Log into registry
|
|
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
|
|
|
|
- name: Test Make
|
|
run: make
|
|
|
|
- name: "Build and Deploy Debian 11 slim Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/slim && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 11 main Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/main && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 11 develop Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/develop && pwd && make build && make deploy
|
|
|
|
##################################################################################
|
|
|
|
- name: Cleanup
|
|
run: make docker-clean
|
|
|
|
##################################################################################
|
|
|
|
- name: "Build and Deploy Debian 11 jdk6 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk6 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 11 jdk7 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk7 && pwd && make build && make deploy
|
|
|
|
##################################################################################
|
|
|
|
- name: Cleanup
|
|
run: make docker-clean
|
|
|
|
##################################################################################
|
|
|
|
- name: "Build and Deploy Debian 11 jdk8 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk8 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 11 jdk11 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk11 && pwd && make build && make deploy
|
|
|
|
##################################################################################
|
|
|
|
- name: Cleanup
|
|
run: make docker-clean
|
|
|
|
##################################################################################
|
|
|
|
- name: "Build and Deploy Debian 11 jdk16 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk16 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 11 jdk17 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk17 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 11 jdk18 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk18 && pwd && make build && make deploy
|
|
|
|
##################################################################################
|
|
|
|
- name: Cleanup
|
|
run: make docker-clean
|
|
|
|
##################################################################################
|
|
|
|
- name: "Build and Deploy Debian 11 jdk19 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk19 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 11 jdk20 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk20 && pwd && make build && make deploy
|
|
|
|
##################################################################################
|
|
|
|
- name: Cleanup
|
|
run: make docker-clean
|
|
|
|
##################################################################################
|
|
|
|
- name: "Build and Deploy Debian 11 jdk21 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk21 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 11 jdk22 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk22 && pwd && make build && make deploy
|
|
|
|
##################################################################################
|
|
|
|
- name: Cleanup
|
|
run: make docker-clean
|