mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-01-14 15:47:58 +03:00
110 lines
4.0 KiB
YAML
110 lines
4.0 KiB
YAML
|
name: EpicMorg Debian 8 Images
|
||
|
|
||
|
on:
|
||
|
# push:
|
||
|
# branches:
|
||
|
# - 'master'
|
||
|
schedule:
|
||
|
- cron: '0 0 * * 1,3,5'
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
build-08-images:
|
||
|
name: Build EpicMorg Debian 8 Images
|
||
|
runs-on: ubuntu-24.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: Install requirements.txt
|
||
|
run: make pip
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 slim Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/slim && pwd && make build && make deploy
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 main Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/main && pwd && make build && make deploy
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 develop Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/develop && pwd && make build && make deploy
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: Cleanup
|
||
|
run: make docker-clean
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk6 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk6 && pwd && make build && make deploy
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk7 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk7 && pwd && make build && make deploy
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: Cleanup
|
||
|
run: make docker-clean
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk8 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk8 && pwd && make build && make deploy
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk11 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk11 && pwd && make build && make deploy
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: Cleanup
|
||
|
run: make docker-clean
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk16 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk16 && pwd && make build && make deploy
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk17 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk17 && pwd && make build && make deploy
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: Cleanup
|
||
|
run: make docker-clean
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk18 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk18 && pwd && make build && make deploy
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk19 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk19 && pwd && make build && make deploy
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: Cleanup
|
||
|
run: make docker-clean
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk20 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk20 && pwd && make build && make deploy
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk21 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk21 && pwd && make build && make deploy
|
||
|
|
||
|
- name: "Build and Deploy Debian 8 jdk22 Image:"
|
||
|
run: cd linux/ecosystem/epicmorg/debian/08-jessie/jdk22 && pwd && make build && make deploy
|
||
|
|
||
|
##################################################################################
|
||
|
|
||
|
- name: Cleanup
|
||
|
run: make docker-clean
|
||
|
|
||
|
##################################################################################
|