forked from BlueMoon-Labs/MOLOT-BlueMoon-Station
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
65 changed files
with
950 additions
and
347 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
name: CI Suite | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
run_linters: | ||
name: Run Linters | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: $HOME/SpacemanDMM | ||
key: ${{ runner.os }}-spacemandmm | ||
- name: Install Tools | ||
run: | | ||
pip3 install setuptools | ||
bash tools/ci/install_build_tools.sh | ||
bash tools/ci/install_spaceman_dmm.sh dreamchecker | ||
pip3 install -r tools/mapmerge2/requirements.txt | ||
- name: Run Linters | ||
run: | | ||
bash tools/ci/check_filedirs.sh tgstation.dme | ||
bash tools/ci/check_changelogs.sh | ||
find . -name "*.php" -print0 | xargs -0 -n1 php -l | ||
find . -name "*.json" -not -path "*/node_modules/*" -print0 | xargs -0 python3 ./tools/json_verifier.py | ||
bash tools/ci/build_tgui.sh | ||
bash tools/ci/check_grep.sh | ||
python3 tools/mapmerge2/dmi.py --test | ||
~/dreamchecker > ${GITHUB_WORKSPACE}/output-annotations.txt 2>&1 | ||
- name: Annotate Lints | ||
uses: yogstation13/DreamAnnotate@v1 | ||
if: always() | ||
with: | ||
outputFile: output-annotations.txt | ||
|
||
compile_all_maps: | ||
name: Compile Maps | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: $HOME/BYOND | ||
key: ${{ runner.os }}-byond | ||
- name: Compile All Maps | ||
run: | | ||
bash tools/ci/install_byond.sh | ||
source $HOME/BYOND/byond/bin/byondsetup | ||
python3 tools/ci/template_dm_generator.py | ||
bash tools/ci/dm.sh -DCIBUILDING -DCITESTING -DALL_MAPS tgstation.dme | ||
run_all_tests: | ||
name: Integration Tests | ||
runs-on: ubuntu-latest | ||
services: | ||
mysql: | ||
image: mysql:latest | ||
env: | ||
MYSQL_ROOT_PASSWORD: root | ||
ports: | ||
- 3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: $HOME/BYOND | ||
key: ${{ runner.os }}-byond | ||
- name: Setup database | ||
run: | | ||
sudo systemctl start mysql | ||
mysql -u root -proot -e 'CREATE DATABASE tg_ci;' | ||
mysql -u root -proot tg_ci < SQL/tgstation_schema.sql | ||
mysql -u root -proot -e 'CREATE DATABASE tg_ci_prefixed;' | ||
mysql -u root -proot tg_ci_prefixed < SQL/tgstation_schema_prefixed.sql | ||
- name: Install rust-g | ||
run: | | ||
sudo dpkg --add-architecture i386 | ||
sudo apt update || true | ||
sudo apt install libssl1.1:i386 | ||
bash tools/ci/install_rust_g.sh | ||
- name: Compile and run tests | ||
run: | | ||
bash tools/ci/install_byond.sh | ||
source $HOME/BYOND/byond/bin/byondsetup | ||
bash tools/ci/dm.sh -DCIBUILDING tgstation.dme | ||
bash tools/ci/run_server.sh | ||
test_windows: | ||
name: Windows Build | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Compile | ||
run: pwsh tools/ci/build.ps1 | ||
- name: Create artifact | ||
run: | | ||
md deploy | ||
bash tools/deploy.sh ./deploy | ||
- name: Deploy artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: deploy | ||
path: deploy |
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,22 @@ | ||
name: Docker Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Build and Publish Docker Image to Registry | ||
uses: elgohr/Publish-Docker-Github-Action@master | ||
with: | ||
name: tgstation/tgstation | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
dockerfile: Dockerfile | ||
tags: "latest" | ||
cache: true |
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,30 @@ | ||
name: Generate documentation | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
generate_documentation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: $HOME/SpacemanDMM | ||
key: ${{ runner.os }}-spacemandmm | ||
- name: Install SpacemanDMM | ||
run: bash tools/ci/install_spaceman_dmm.sh dmdoc | ||
- name: Generate documentation | ||
run: | | ||
~/dmdoc | ||
touch dmdoc/.nojekyll | ||
echo codedocs.tgstation13.org > dmdoc/CNAME | ||
- name: Deploy | ||
uses: JamesIves/[email protected] | ||
with: | ||
BRANCH: gh-pages | ||
CLEAN: true | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SINGLE_COMMIT: true | ||
FOLDER: dmdoc |
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 |
---|---|---|
|
@@ -26,6 +26,7 @@ jobs: | |
library-path: 'code/modules/tgs' | ||
|
||
- name: Commit and Push | ||
continue-on-error: true | ||
run: | | ||
git config user.name tgstation-server | ||
git config user.email [email protected] | ||
|
@@ -35,11 +36,12 @@ jobs: | |
- name: Create Pull Request | ||
uses: repo-sync/pull-request@v2 | ||
if: ${{ success() }} | ||
with: | ||
source_branch: "tgs-dmapi-update" | ||
destination_branch: "master" | ||
pr_title: "Automatic TGS DMAPI Update" | ||
pr_body: "This pull request updates the TGS DMAPI to the latest version. Please note any breaking or unimplemented changes before merging." | ||
pr_label: "Tools" | ||
pr_allow_empty: false | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
github_token: ${{ secrets.TGS_UPDATER }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.