-
-
Notifications
You must be signed in to change notification settings - Fork 538
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into racial-foods
- Loading branch information
Showing
2,135 changed files
with
197,729 additions
and
97,593 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Autowiki | ||
on: | ||
schedule: | ||
- cron: "5 4 * * *" | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
autowiki: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: "Check for AUTOWIKI_USERNAME" | ||
id: secrets_set | ||
env: | ||
ENABLER_SECRET: ${{ secrets.AUTOWIKI_USERNAME }} | ||
run: | | ||
unset SECRET_EXISTS | ||
if [ -n "$ENABLER_SECRET" ]; then SECRET_EXISTS=true ; fi | ||
echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT | ||
- name: Checkout | ||
if: steps.secrets_set.outputs.SECRETS_ENABLED | ||
uses: actions/checkout@v3 | ||
- name: Restore BYOND cache | ||
if: steps.secrets_set.outputs.SECRETS_ENABLED | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/BYOND | ||
key: ${{ runner.os }}-byond-${{ secrets.CACHE_PURGE_KEY }} | ||
- name: Install rust-g | ||
if: steps.secrets_set.outputs.SECRETS_ENABLED | ||
run: | | ||
sudo dpkg --add-architecture i386 | ||
sudo apt update || true | ||
sudo apt install -o APT::Immediate-Configure=false libssl1.1:i386 | ||
bash tools/ci/install_rust_g.sh | ||
- name: Install auxmos | ||
if: steps.secrets_set.outputs.SECRETS_ENABLED | ||
run: | | ||
bash tools/ci/install_auxmos.sh | ||
- name: Compile and generate Autowiki files | ||
if: steps.secrets_set.outputs.SECRETS_ENABLED | ||
run: | | ||
bash tools/ci/install_byond.sh | ||
source $HOME/BYOND/byond/bin/byondsetup | ||
tools/build/build --ci autowiki | ||
- name: Run Autowiki | ||
if: steps.secrets_set.outputs.SECRETS_ENABLED | ||
env: | ||
USERNAME: ${{ secrets.AUTOWIKI_USERNAME }} | ||
PASSWORD: ${{ secrets.AUTOWIKI_PASSWORD }} | ||
run: | | ||
cd tools/autowiki | ||
npm install | ||
cd ../.. | ||
node tools/autowiki/autowiki.js data/autowiki_edits.txt data/autowiki_files/ |
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 |
---|---|---|
|
@@ -24,8 +24,7 @@ jobs: | |
pip install ruamel.yaml PyGithub | ||
- name: Make CL | ||
env: | ||
#GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Use this instead if you have unprotected branches | ||
GITHUB_TOKEN: ${{ secrets.CHANGELOG_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.CHANGELOG_TOKEN || secrets.GITHUB_TOKEN }} | ||
GIT_EMAIL: "[email protected]" | ||
GIT_NAME: "Changelogs" | ||
run: python tools/changelog/generate_cl.py |
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,65 @@ | ||
name: TGS Test Suite | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'gh-readonly-queue/master/**' | ||
paths: | ||
- '.tgs.yml' | ||
- '.github/workflows/tgs_test.yml' | ||
- 'dependencies.sh' | ||
- 'code/__DEFINES/tgs.config.dm' | ||
- 'code/__DEFINES/tgs.dm' | ||
- 'code/game/world.dm' | ||
- 'code/modules/tgs/**' | ||
- 'tools/tgs_scripts/**' | ||
- 'tools/tgs_test/**' | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '.tgs.yml' | ||
- '.github/workflows/tgs_test.yml' | ||
- 'dependencies.sh' | ||
- 'code/__DEFINES/tgs.config.dm' | ||
- 'code/__DEFINES/tgs.dm' | ||
- 'code/game/world.dm' | ||
- 'code/modules/tgs/**' | ||
- 'tools/tgs_scripts/**' | ||
- 'tools/tgs_test/**' | ||
merge_group: | ||
branches: | ||
- master | ||
env: | ||
TGS_API_PORT: 5000 | ||
PR_NUMBER: ${{ github.event.number }} | ||
jobs: | ||
test_tgs_docker: | ||
if: "!contains(github.event.head_commit.message, '[ci skip]')" | ||
name: Test TGS Docker | ||
runs-on: ubuntu-22.04 | ||
concurrency: | ||
group: test_tgs_docker-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
services: | ||
tgs: | ||
image: tgstation/server | ||
env: | ||
Database__DatabaseType: Sqlite | ||
Database__ConnectionString: Data Source=TGS_TGTest.sqlite3;Mode=ReadWriteCreate | ||
General__ConfigVersion: 4.1.0 | ||
General__ApiPort: ${{ env.TGS_API_PORT }} | ||
General__SetupWizardMode: Never | ||
ports: | ||
- 5000:5000 #Can't use env here for some reason | ||
steps: | ||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: 7.0.x | ||
|
||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Test TGS Integration | ||
run: dotnet run -c Release --project tools/tgs_test ${{ github.repository }} /tgs_instances/tgstation ${{ env.TGS_API_PORT }} ${{ github.event.pull_request.head.sha || github.sha }} ${{ secrets.GITHUB_TOKEN }} ${{ env.PR_NUMBER }} |
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,25 @@ | ||
# This file is used by TGS (https://github.com/tgstation/tgstation-server) clients to quickly initialize a server instance for the codebase | ||
# The format isn't documented anywhere but hopefully we never have to change it. If there are questions, contact the TGS maintainer Cyberboss/@Dominion#0444 | ||
version: 1 | ||
# The BYOND version to use (kept in sync with dependencies.sh by the "TGS Test Suite" CI job) | ||
# Must be interpreted as a string, keep quoted | ||
byond: "514.1588" | ||
# Folders to create in "<instance_path>/Configuration/GameStaticFiles/" | ||
static_files: | ||
# Config directory should be static | ||
- name: config | ||
# This implies the folder should be pre-populated with contents from the repo | ||
populate: true | ||
# Data directory must be static | ||
- name: data | ||
# String dictionary. The value is the location of the file in the repo to upload to TGS. The key is the name of the file to upload to "<instance_path>/Configuration/EventScripts/" | ||
# This one is for Linux hosted servers | ||
linux_scripts: | ||
PreCompile.sh: tools/tgs_scripts/PreCompile.sh | ||
WatchdogLaunch.sh: tools/tgs_scripts/WatchdogLaunch.sh | ||
InstallDeps.sh: tools/tgs_scripts/InstallDeps.sh | ||
# Same as above for Windows hosted servers | ||
windows_scripts: | ||
PreCompile.bat: tools/tgs_scripts/PreCompile.bat | ||
# The security level the game should be run at | ||
security: Trusted |
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
Oops, something went wrong.