2022-11-14 22:12:31 +03:00
|
|
|
name: EpicMorg EcoSystem Gitlab Runner Images
|
|
|
|
|
|
|
|
on:
|
|
|
|
# push:
|
|
|
|
# branches:
|
|
|
|
# - 'master'
|
|
|
|
schedule:
|
|
|
|
- cron: '4 5 * * 2,4,6'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build-glr-main-images:
|
|
|
|
name: Build EpicMorg Gitlab Runner Main 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 Gitlab Runner Main Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/latest && pwd && make build && make deploy
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
build-glr-other-images:
|
|
|
|
name: Build EpicMorg Gitlab Runner Oter Images
|
|
|
|
runs-on: ubuntu-22.04
|
2022-11-15 23:56:32 +03:00
|
|
|
needs: build-glr-main-images
|
2022-11-14 22:12:31 +03:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-11-15 23:58:58 +03:00
|
|
|
- name: "Build and Deploy Gitlab Runner amxX 1.9 SDK Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/amxx-sdk/1.9 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner amxX 1.10 SDK Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/amxx-sdk/1.10 && pwd && make build && make deploy
|
2022-11-14 22:12:31 +03:00
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner Android SDK Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/android-sdk && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner Atlassian SDK Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/atlassian-sdk && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner dotNet SDK Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/dotnet-sdk && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner node12 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/node12 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner node14 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/node14 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner node15 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/node15 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner node16 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/node16 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner node17 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/node17 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner node18 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/node18 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner php7.2 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/php7.2 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner php7.3 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/php7.3 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner php7.4 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/php7.4 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner php8.0 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/php8.0 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner php8.1 Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/php8.1 && pwd && make build && make deploy
|
|
|
|
|
|
|
|
- name: "Build and Deploy Gitlab Runner Steam SDK Image:"
|
|
|
|
run: cd linux/ecosystem/gitlab/runner/steam-sdk && pwd && make build && make deploy
|
|
|
|
|
|
|
|
##################################################################################
|
|
|
|
|
|
|
|
- name: Cleanup
|
|
|
|
run: make docker-clean
|