make - autocommit

This commit is contained in:
Zimovskii Anatolii 2022-11-15 23:58:58 +03:00
parent 0782f5f572
commit 7524928426
Signed by: stam
GPG Key ID: 9911D9EF664EEE14
4 changed files with 16 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -13,6 +13,7 @@
* fixed `GitHub Actions` and `Makefile`
* updated `base` images
* added `node19`
* added `amxX 1.10`
* `oct`
* just fixes
* `sep`

View File

@ -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