docker-scripts/.github/workflows/epicmorg.ecosysctem.misc.images.yml

326 lines
10 KiB
YAML
Raw Normal View History

2022-09-13 13:54:41 +03:00
name: EpicMorg EcoSystem Misc Images
2021-11-12 02:12:14 +03:00
on:
2024-12-01 21:25:12 +03:00
workflow_dispatch:
2021-11-12 02:12:14 +03:00
schedule:
- cron: '0 0 * * 2,4,6'
2021-11-12 02:12:14 +03:00
jobs:
2022-09-13 13:54:41 +03:00
build-torrserver-image:
name: EpicMorg EcoSystem TorrServer Image
runs-on: ubuntu-24.04
2021-11-12 02:12:14 +03:00
steps:
2024-02-10 00:44:19 +03:00
- uses: actions/checkout@v4
2021-11-12 02:12:14 +03:00
- name: Log into registry
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
2021-11-12 02:22:38 +03:00
- name: Test Make
run: make
- name: Install requirements.txt
run: make pip
2022-09-13 13:54:41 +03:00
- name: Build and Deploy TorrServer
run: cd linux/ecosystem/torrserver && make build && make deploy
2022-09-10 22:12:51 +03:00
##################################################################################
build-ers-image:
name: EpicMorg EcoSystem Electron Release Server Image
runs-on: ubuntu-24.04
steps:
2024-02-10 00:44:19 +03:00
- 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 Electron Release Server
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/electron-release-server && make build && make deploy
##################################################################################
build-vk2discord-image:
name: EpicMorg EcoSystem vk2discord Image
runs-on: ubuntu-24.04
steps:
2024-02-10 00:44:19 +03:00
- 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 vk2discord
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/vk2discord && make build && make deploy
##################################################################################
build-qbittorrent-image:
name: EpicMorg EcoSystem qBittorrent Image
runs-on: ubuntu-24.04
steps:
2024-02-10 00:44:19 +03:00
- 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
2024-02-09 17:42:13 +03:00
- name: Build and Deploy qBittorrent 4.4.0
run: cd linux/ecosystem/qbittorrent/4.4.0 && make build && make deploy
- name: Build and Deploy qBittorrent 4.4.1
run: cd linux/ecosystem/qbittorrent/4.4.1 && make build && make deploy
- name: Build and Deploy qBittorrent 4.4.2
run: cd linux/ecosystem/qbittorrent/4.4.2 && make build && make deploy
2024-06-21 16:10:08 +03:00
- name: Build and Deploy qBittorrent 4.4.3.1
run: cd linux/ecosystem/qbittorrent/4.4.3.1 && make build && make deploy
##################################################################################
- name: Cleanup
run: make docker-clean
##################################################################################
2024-02-09 17:42:13 +03:00
- name: Build and Deploy qBittorrent 4.4.4
run: cd linux/ecosystem/qbittorrent/4.4.4 && make build && make deploy
- name: Build and Deploy qBittorrent 4.4.5
run: cd linux/ecosystem/qbittorrent/4.4.5 && make build && make deploy
- name: Build and Deploy qBittorrent 4.5.0
run: cd linux/ecosystem/qbittorrent/4.5.0 && make build && make deploy
- name: Build and Deploy qBittorrent 4.5.1
run: cd linux/ecosystem/qbittorrent/4.5.1 && make build && make deploy
2024-06-21 16:10:08 +03:00
##################################################################################
- name: Cleanup
run: make docker-clean
##################################################################################
2024-02-09 17:42:13 +03:00
- name: Build and Deploy qBittorrent 4.5.2
run: cd linux/ecosystem/qbittorrent/4.5.2 && make build && make deploy
- name: Build and Deploy qBittorrent 4.5.3
run: cd linux/ecosystem/qbittorrent/4.5.3 && make build && make deploy
- name: Build and Deploy qBittorrent 4.5.4
run: cd linux/ecosystem/qbittorrent/4.5.4 && make build && make deploy
2024-06-21 16:10:08 +03:00
##################################################################################
- name: Cleanup
run: make docker-clean
##################################################################################
2024-02-09 17:42:13 +03:00
- name: Build and Deploy qBittorrent 4.5.5
run: cd linux/ecosystem/qbittorrent/4.5.5 && make build && make deploy
- name: Build and Deploy qBittorrent 4.6.0
run: cd linux/ecosystem/qbittorrent/4.6.0 && make build && make deploy
- name: Build and Deploy qBittorrent 4.6.1
run: cd linux/ecosystem/qbittorrent/4.6.1 && make build && make deploy
2024-06-21 16:10:08 +03:00
##################################################################################
- name: Cleanup
run: make docker-clean
##################################################################################
2023-12-26 03:39:19 +03:00
- name: Build and Deploy qBittorrent 4.6.2
run: cd linux/ecosystem/qbittorrent/4.6.2 && make build && make deploy
- name: Build and Deploy qBittorrent 4.6.3
run: cd linux/ecosystem/qbittorrent/4.6.3 && make build && make deploy
2024-06-21 16:10:08 +03:00
- name: Build and Deploy qBittorrent 4.6.4
run: cd linux/ecosystem/qbittorrent/4.6.4 && make build && make deploy
2024-12-01 21:25:12 +03:00
- name: Build and Deploy qBittorrent 4.6.5
run: cd linux/ecosystem/qbittorrent/4.6.5 && make build && make deploy
##################################################################################
- name: Cleanup
run: make docker-clean
##################################################################################
- name: Build and Deploy qBittorrent 4.6.6
run: cd linux/ecosystem/qbittorrent/4.6.6 && make build && make deploy
- name: Build and Deploy qBittorrent 4.6.7
run: cd linux/ecosystem/qbittorrent/4.6.7 && make build && make deploy
- name: Build and Deploy qBittorrent 5.0.0
run: cd linux/ecosystem/qbittorrent/5.0.0 && make build && make deploy
##################################################################################
- name: Cleanup
run: make docker-clean
##################################################################################
- name: Build and Deploy qBittorrent 5.0.1
run: cd linux/ecosystem/qbittorrent/5.0.1 && make build && make deploy
- name: Build and Deploy qBittorrent 5.0.2
run: cd linux/ecosystem/qbittorrent/5.0.2 && make build && make deploy
2024-06-21 16:10:08 +03:00
- name: Build and Deploy qBittorrent Testing
run: cd linux/ecosystem/qbittorrent/testing && make build && make deploy
##################################################################################
build-opentracker-image:
name: EpicMorg EcoSystem openTracker Image
runs-on: ubuntu-24.04
steps:
2024-02-10 00:44:19 +03:00
- 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 openTracker
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/opentracker && make build && make deploy
##################################################################################
build-retracker-image:
name: EpicMorg EcoSystem reTracker Image
runs-on: ubuntu-24.04
steps:
2024-02-10 00:44:19 +03:00
- 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
2024-06-21 16:10:08 +03:00
# to rework
# - name: Build and Deploy reTracker
# run: cd linux/ecosystem/retracker && make build && make deploy
##################################################################################
build-torrust-tracker-image:
name: EpicMorg EcoSystem Torrust Tracker Image
runs-on: ubuntu-24.04
steps:
2024-02-10 00:44:19 +03:00
- 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 Torrust Tracker
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/torrust-tracker && make build && make deploy
2024-06-21 16:10:08 +03:00
# to rework
# - name: Build and Deploy Torrust Index
# run: cd linux/ecosystem/torrust-index && make build && make deploy
##################################################################################
build-monero-cli-image:
name: EpicMorg EcoSystem Monero CLI Image
runs-on: ubuntu-24.04
steps:
2024-02-10 00:44:19 +03:00
- 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 Monero CLI
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/monero/monerod && make build && make deploy
##################################################################################
build-monero-p2pool-image:
name: EpicMorg EcoSystem Monero p2pool Image
runs-on: ubuntu-24.04
steps:
2024-02-10 00:44:19 +03:00
- 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 Monero p2pool
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/monero/p2pool && make build && make deploy
2023-07-01 17:57:40 +03:00
2023-08-06 21:57:55 +03:00
##################################################################################
build-ninjam-image:
name: EpicMorg EcoSystem ninjam Image
runs-on: ubuntu-24.04
2023-08-06 21:57:55 +03:00
steps:
2024-02-10 00:44:19 +03:00
- uses: actions/checkout@v4
2023-08-06 21:57:55 +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
- name: Install requirements.txt
run: make pip
2023-08-06 21:57:55 +03:00
- name: Build and Deploy ninjam
run: cd linux/ecosystem/ninjam/latest && make build && make deploy
2023-07-01 17:57:40 +03:00
##################################################################################
2022-09-10 22:12:51 +03:00
- name: Cleanup
run: make docker-clean