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

166 lines
4.9 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:
2021-11-12 02:27:59 +03:00
# push:
# branches:
# - 'develop'
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
2021-11-12 02:12:14 +03:00
runs-on: ubuntu-20.04
steps:
2022-10-16 14:35:24 +03:00
- uses: actions/checkout@v3
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
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-20.04
steps:
2022-10-16 14:35:24 +03:00
- 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 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-20.04
steps:
2022-10-16 14:35:24 +03:00
- 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 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-20.04
steps:
2022-10-16 14:35:24 +03:00
- 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 qBittorrent
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/qbittorrent && make build && make deploy
##################################################################################
build-opentracker-image:
name: EpicMorg EcoSystem openTracker Image
runs-on: ubuntu-20.04
steps:
2022-10-16 14:35:24 +03:00
- 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 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-20.04
steps:
2022-10-16 14:35:24 +03:00
- 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 reTracker
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/retracker && make build && make deploy
##################################################################################
build-torrust-tracker-image:
name: EpicMorg EcoSystem Torrust Tracker Image
runs-on: ubuntu-20.04
steps:
2022-10-16 14:35:24 +03:00
- 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 Torrust Tracker
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/torrust-tracker && make build && make deploy
##################################################################################
build-monero-cli-image:
name: EpicMorg EcoSystem Monero CLI Image
runs-on: ubuntu-20.04
steps:
2022-10-16 14:35:24 +03:00
- 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 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-20.04
steps:
2022-10-16 14:35:24 +03:00
- 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 Monero p2pool
2022-11-12 23:44:39 +03:00
run: cd linux/ecosystem/monero/p2pool && make build && make deploy
##################################################################################
2022-09-10 22:12:51 +03:00
- name: Cleanup
run: make docker-clean