EpicMorg Debian Python Images #165
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: EpicMorg Debian Python Images | |
on: | |
# push: | |
# branches: | |
# - 'master' | |
schedule: | |
- cron: '1 1 * * 1,3,5' | |
jobs: | |
build-python-base-images: | |
name: Build EpicMorg Debian Python Base Images | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 Python 2.7 Main Image:" | |
run: cd linux/advanced/python/main/2.7 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.6 Main Image:" | |
run: cd linux/advanced/python/main/3.6 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.7 Main Image:" | |
run: cd linux/advanced/python/main/3.7 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.8 Main Image:" | |
run: cd linux/advanced/python/main/3.8 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.9 Main Image:" | |
run: cd linux/advanced/python/main/3.9 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.10 Main Image:" | |
run: cd linux/advanced/python/main/3.10 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.11 Main Image:" | |
run: cd linux/advanced/python/main/3.11 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.12 Main Image:" | |
run: cd linux/advanced/python/main/3.12 && pwd && make build && make deploy | |
################################################################################## | |
build-python-develop-images: | |
name: Build EpicMorg Debian Python Develop Images | |
runs-on: ubuntu-22.04 | |
needs: build-python-base-images | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 Python 2.7 Develop Image:" | |
run: cd linux/advanced/python/develop/2.7 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.6 Develop Image:" | |
run: cd linux/advanced/python/develop/3.6 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.7 Develop Image:" | |
run: cd linux/advanced/python/develop/3.7 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.8 Develop Image:" | |
run: cd linux/advanced/python/develop/3.8 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.9 Develop Image:" | |
run: cd linux/advanced/python/develop/3.9 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.10 Develop Image:" | |
run: cd linux/advanced/python/develop/3.10 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.11 Develop Image:" | |
run: cd linux/advanced/python/develop/3.11 && pwd && make build && make deploy | |
- name: "Build and Deploy Python 3.12 Develop Image:" | |
run: cd linux/advanced/python/develop/3.12 && pwd && make build && make deploy | |
################################################################################## | |
- name: Cleanup | |
run: make docker-clean |