-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: добавил единый вызов пути до слежубных приложений
- добавил шаги для deploy
- Loading branch information
Karlo Ivan
committed
May 11, 2024
1 parent
79ce4c5
commit 6dd0093
Showing
23 changed files
with
162 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), "oscript_modules\vanessa-runner\src\main.os"); | ||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
|
||
// vrunner: Запуск конфигуратора | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить("designer"); | ||
// МассивПараметров.Добавить("--settings tools/JSON/vrunner.json"); | ||
МассивПараметров.Добавить("--no-wait"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду("oscript", МассивПараметров); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
#Использовать fs | ||
#Использовать "..\..\..\src\" | ||
|
||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
|
||
// vrunner: Запуск обновления ИБ в режиме предприятия | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить("run"); | ||
МассивПараметров.Добавить("--command ""ЗапуститьОбновлениеИнформационнойБазы;ЗавершитьРаботуСистемы;"""); | ||
МассивПараметров.Добавить("--execute $runnerRoot/epf/ЗакрытьПредприятие.epf"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду("oscript", МассивПараметров); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
// vrunner: Загрузка конфигурации из хранилища | ||
|
||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить("loadrepo"); | ||
МассивПараметров.Добавить("%*"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду("oscript", МассивПараметров); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), "oscript_modules\vanessa-runner\src\main.os"); | ||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
|
||
// vrunner: Запуск клиента предприятия | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить("run"); | ||
// МассивПараметров.Добавить("--settings tools/JSON/vrunner.json"); | ||
МассивПараметров.Добавить("--no-wait"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду("oscript", МассивПараметров); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
delay = 10; | ||
|
||
// vrunner: завершение сеансов | ||
|
||
ЗапускаемоеПриложение = "oscript"; | ||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
КомандаSession = "session"; | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить(КомандаSession); | ||
МассивПараметров.Добавить("kill"); | ||
МассивПараметров.Добавить("--with-nolock"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду(ЗапускаемоеПриложение, МассивПараметров); | ||
|
||
Лог.Отладка("Пауза %1 секунд", delay); | ||
Приостановить(delay); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
delay = 10; | ||
|
||
// vrunner: блокировка сеансов | ||
|
||
ЗапускаемоеПриложение = "oscript"; | ||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
КомандаSession = "session"; | ||
|
||
uccode = СтрШаблон("--uccode %1", ПолучитьПеременнуюСреды("UCCODE")); | ||
lockmessage = СтрШаблон("--lockmessage %1", ""); | ||
lockstartat = СтрШаблон("--lockstartat %1", delay); | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить(КомандаSession); | ||
МассивПараметров.Добавить("lock"); | ||
МассивПараметров.Добавить(uccode); | ||
МассивПараметров.Добавить(lockmessage); | ||
МассивПараметров.Добавить(lockstartat); | ||
МассивПараметров.Добавить("--lockendclear"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду(ЗапускаемоеПриложение, МассивПараметров); | ||
|
||
Лог.Отладка("Пауза %1 секунд", delay); | ||
Приостановить(delay); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
delay = 10; | ||
|
||
// vrunner: снятие блокировки сеанса | ||
|
||
ЗапускаемоеПриложение = "oscript"; | ||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
КомандаSession = "session"; | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить(КомандаSession); | ||
МассивПараметров.Добавить("unlock"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду(ЗапускаемоеПриложение, МассивПараметров); | ||
|
||
Лог.Отладка("Пауза %1 секунд", delay); | ||
Приостановить(delay); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), "oscript_modules\vanessa-runner\src\main.os"); | ||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
|
||
// vrunner: Синтаксический контроль | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить("syntax-check"); | ||
// МассивПараметров.Добавить("--settings tools/JSON/vrunner.json"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду("oscript", МассивПараметров); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
// vrunner: Загрузка конфигурации из хранилища | ||
|
||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить("updatedb"); | ||
МассивПараметров.Добавить("%*"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду("oscript", МассивПараметров); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), "oscript_modules\vanessa-runner\src\main.os"); | ||
ПутьVanessaAutomation = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), "oscript_modules\vanessa-automation\vanessa-automation.epf"); | ||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
ПутьVanessaAutomation = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVAutomation()); | ||
|
||
// vrunner: Запуск сценарных тестов | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить("vanessa"); | ||
// МассивПараметров.Добавить("--settings tools/JSON/vrunner.json"); | ||
МассивПараметров.Добавить("--pathvanessa " + ПутьVanessaAutomation); | ||
|
||
Общие.ВыполнитьСтороннююКоманду("oscript", МассивПараметров); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
|
||
#Использовать "..\..\..\src\" | ||
|
||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), "oscript_modules\vanessa-runner\src\main.os"); | ||
ИсполняемыйФайл = Общие.ОбъединитьПути(ПараметрыПриложения.КаталогПриложенияИсточник(), ПараметрыПриложения.ВернутьПутьVrunner()); | ||
|
||
// vrunner: Запуск модульных тестов | ||
|
||
МассивПараметров = Новый Массив; | ||
МассивПараметров.Добавить(ИсполняемыйФайл); | ||
МассивПараметров.Добавить("xunit"); | ||
МассивПараметров.Добавить("tests"); | ||
// МассивПараметров.Добавить("--settings tools/JSON/vrunner.json"); | ||
|
||
Общие.ВыполнитьСтороннююКоманду("oscript", МассивПараметров); |
Oops, something went wrong.