-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from PyotrIgn/no_grief2
Изменение времени на ролях
- Loading branch information
Showing
13 changed files
with
151 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
stages: | ||
- install | ||
- build | ||
- test | ||
|
||
install-dep: | ||
stage: install | ||
variables: | ||
GIT_SUBMODULE_STRATEGY: recursive | ||
GIT_SUBMODULE_UPDATE_FLAGS: --init --depth 50 --recursive --jobs 4 | ||
script: | ||
- echo "Install dependenses ..." | ||
|
||
build-project: | ||
stage: build | ||
variables: | ||
GITHUB_ACTIONS: 1 | ||
GIT_CLEAN_FLAGS: none | ||
GIT_CHECKOUT: none | ||
dependencies: [] | ||
script: | ||
- | | ||
echo "Restore Projects ..." | ||
dotnet restore | ||
echo "Build Projects ..." | ||
dotnet build --configuration Release --no-restore /p:WarningsAsErrors= /m | ||
dotnet run --project Content.YAMLLinter/Content.YAMLLinter.csproj --no-build | ||
echo "Compile complete." | ||
yaml-test: | ||
stage: test | ||
variables: | ||
GITHUB_ACTIONS: 1 | ||
GIT_CLEAN_FLAGS: none | ||
GIT_CHECKOUT: none | ||
dependencies: [] | ||
script: | ||
- dotnet run --project Content.YAMLLinter/Content.YAMLLinter.csproj --no-build | ||
|
||
content-test: | ||
stage: test | ||
needs: ["yaml-test"] | ||
variables: | ||
GITHUB_ACTIONS: 1 | ||
GIT_CLEAN_FLAGS: none | ||
GIT_CHECKOUT: none | ||
dependencies: [] | ||
script: | ||
- dotnet test --configuration Tools --no-build Content.Tests/Content.Tests.csproj -- NUnit.ConsoleOut=0 | ||
|
||
unit-test: | ||
stage: test | ||
needs: ["content-test"] | ||
variables: | ||
DOTNET_gcServer: 1 | ||
GITHUB_ACTIONS: 1 | ||
GIT_CLEAN_FLAGS: none | ||
GIT_CHECKOUT: none | ||
dependencies: [] | ||
script: | ||
- dotnet test --configuration Tools --no-build Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0 NUnit.MapWarningTo=Failed | ||
|
||
|
||
remove-build: | ||
stage: .post | ||
when: on_failure | ||
script: | ||
- cd .. | ||
- rm -R space_station |
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
24 changes: 24 additions & 0 deletions
24
Resources/Locale/ru-RU/ADT/Objects/Consumable/Drinks/oktoberfest.ftl
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,24 @@ | ||
ent-ADTGoldenAleGlass = золотой эль | ||
.desc = Прямиком из таверны "Розаверн". | ||
.suffix = { "Октоберфест" } | ||
ent-ADTSausageBeerGlass = лучшее сосисочное пиво | ||
.desc = Варево с ароматом сосисок. | ||
.suffix = { "Октоберфест" } | ||
ent-ADTTechnoBeerGlass = пиво "Технарское" | ||
.desc = Напиток, сваренный в глубинах инженерного отдела безумными атмосианами. | ||
.suffix = { "Октоберфест" } | ||
ent-ADTClassicPaulanerBeerGlass = классический пауланер | ||
.desc = Сорт пива, дающий радость уже больше 500 лет. | ||
.suffix = { "Октоберфест" } | ||
ent-ADTLivseyBeerGlass = пиво "Доктор Ливси" | ||
.desc = АХАХАХАХАХХА, то есть да. Напиток, сваренный криониками из медбэя. | ||
.suffix = { "Октоберфест" } | ||
ent-ADTLuckyJonnyBeerGlass = пиво "Счастливчик Джонни" | ||
.desc = Крайне странный сорт, о котором каждый расскажет свою историю. | ||
.suffix = { "Октоберфест" } | ||
ent-ADTSecUnfilteredBeerGlass = охранное нефильтрованное пиво | ||
.desc = Робаст, алкоголь и пена. Замешано на слезах клоуна. | ||
.suffix = { "Октоберфест" } | ||
ent-ADTGlyphidStoutBeerGlass = глифидский стаут | ||
.desc = Напиток, подаренный теми четыремя безумными дворфами. | ||
.suffix = { "Октоберфест" } |
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