From 7524928426e5853ee656d4c7803e59baa2c19036 Mon Sep 17 00:00:00 2001 From: Zimovskii Anatolii Date: Tue, 15 Nov 2022 23:58:58 +0300 Subject: [PATCH] make - autocommit --- .github/workflows/epicmorg.base.images.giltab.runners.yml | 7 +++++-- .github/workflows/epicmorg.base.images.teamcity.agents.yml | 7 +++++-- CHANGELOG.md | 1 + Makefile | 7 +++++-- 4 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/workflows/epicmorg.base.images.giltab.runners.yml b/.github/workflows/epicmorg.base.images.giltab.runners.yml index 341904933..d51dc0ed2 100644 --- a/.github/workflows/epicmorg.base.images.giltab.runners.yml +++ b/.github/workflows/epicmorg.base.images.giltab.runners.yml @@ -39,8 +39,11 @@ jobs: - name: Test Make run: make - - name: "Build and Deploy Gitlab Runner amxX SDK Image:" - run: cd linux/ecosystem/gitlab/runner/amxx-sdk && pwd && make build && make deploy + - 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 - name: "Build and Deploy Gitlab Runner Android SDK Image:" run: cd linux/ecosystem/gitlab/runner/android-sdk && pwd && make build && make deploy diff --git a/.github/workflows/epicmorg.base.images.teamcity.agents.yml b/.github/workflows/epicmorg.base.images.teamcity.agents.yml index 037848b9f..a44960375 100644 --- a/.github/workflows/epicmorg.base.images.teamcity.agents.yml +++ b/.github/workflows/epicmorg.base.images.teamcity.agents.yml @@ -39,8 +39,11 @@ jobs: - name: Test Make run: make - - name: "Build and Deploy TeamCity Agent amxX SDK Image:" - run: cd linux/ecosystem/teamcity/agent/amxx-sdk && pwd && make build && make deploy + - name: "Build and Deploy TeamCity Agent amxX 1.9 SDK Image:" + run: cd linux/ecosystem/teamcity/agent/amxx-sdk/1.9 && pwd && make build && make deploy + + - name: "Build and Deploy TeamCity Agent amxX 1.10 SDK Image:" + run: cd linux/ecosystem/teamcity/agent/amxx-sdk/1.10 && pwd && make build && make deploy - name: "Build and Deploy TeamCity Agent Android SDK Image:" run: cd linux/ecosystem/teamcity/agent/android-sdk && pwd && make build && make deploy diff --git a/CHANGELOG.md b/CHANGELOG.md index cbb086edf..0c15e208c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ * fixed `GitHub Actions` and `Makefile` * updated `base` images * added `node19` + * added `amxX 1.10` * `oct` * just fixes * `sep` diff --git a/Makefile b/Makefile index 38c61200f..99482b35d 100644 --- a/Makefile +++ b/Makefile @@ -380,6 +380,7 @@ ecosystem-nodejs-images: cd `pwd`/linux/ecosystem/nodejs/node16 && pwd && make build && make deploy cd `pwd`/linux/ecosystem/nodejs/node17 && pwd && make build && make deploy cd `pwd`/linux/ecosystem/nodejs/node18 && pwd && make build && make deploy + cd `pwd`/linux/ecosystem/nodejs/node19 && pwd && make build && make deploy ecosystem-vk2discord-images: cd `pwd`/linux/ecosystem/vk2discord && pwd && make build && make deploy @@ -422,7 +423,8 @@ ecosystem-postgres-images: ecosystem-teamcity-agent-images: cd `pwd`/linux/ecosystem/teamcity/agent/latest && pwd && make build && make deploy - cd `pwd`/linux/ecosystem/teamcity/agent/amxx-sdk && pwd && make build && make deploy + cd `pwd`/linux/ecosystem/teamcity/agent/amxx-sdk/1.9 && pwd && make build && make deploy + cd `pwd`/linux/ecosystem/teamcity/agent/amxx-sdk/1.10 && pwd && make build && make deploy cd `pwd`/linux/ecosystem/teamcity/agent/android-sdk && pwd && make build && make deploy cd `pwd`/linux/ecosystem/teamcity/agent/atlassian-sdk && pwd && make build && make deploy cd `pwd`/linux/ecosystem/teamcity/agent/dotnet-sdk && pwd && make build && make deploy @@ -441,7 +443,8 @@ ecosystem-teamcity-agent-images: ecosystem-gitlab-runner-images: cd `pwd`/linux/ecosystem/gitlab/runner/latest && pwd && make build && make deploy - cd `pwd`/linux/ecosystem/gitlab/runner/amxx-sdk && pwd && make build && make deploy + cd `pwd`/linux/ecosystem/gitlab/runner/amxx-sdk/1.9 && pwd && make build && make deploy + cd `pwd`/linux/ecosystem/gitlab/runner/amxx-sdk/1.10 && pwd && make build && make deploy cd `pwd`/linux/ecosystem/gitlab/runner/android-sdk && pwd && make build && make deploy cd `pwd`/linux/ecosystem/gitlab/runner/atlassian-sdk && pwd && make build && make deploy cd `pwd`/linux/ecosystem/gitlab/runner/dotnet-sdk && pwd && make build && make deploy