-
-
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 updates-deps-again
- Loading branch information
Showing
1,524 changed files
with
90,580 additions
and
28,670 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 |
---|---|---|
@@ -1,49 +1,67 @@ | ||
Admin: | ||
- "code/modules/admin/**" | ||
- any-glob-to-any-file: | ||
- "code/modules/admin/**" | ||
|
||
# Any file within the config subfolder | ||
Config: | ||
- "config/**" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "config/**" | ||
|
||
Dependencies: | ||
- "**/package.json" | ||
- "**/package-lock.json" | ||
- "**/yarn.lock" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "**/package.json" | ||
- "**/package-lock.json" | ||
- "**/yarn.lock" | ||
|
||
# When the .DME is changed | ||
DME Edit: | ||
- "./*.dme" | ||
- "**/*.dme" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "./*.dme" | ||
- "**/*.dme" | ||
|
||
# Any .dmi changes | ||
Sprites: | ||
- "**/*.dmi" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "**/*.dmi" | ||
|
||
# Changes to a .dm or anything in the code subfolder | ||
Code Change: | ||
- "**/*.dm" | ||
- "code/**" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "**/*.dm" | ||
- "code/**" | ||
|
||
# Changes to a .dmm or anything in the _map subfolder | ||
Map Change: | ||
- "**/*.dmm" | ||
- "_maps/**" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "**/*.dmm" | ||
- "_maps/**" | ||
|
||
# Any changes to .ogg files are marked as sound | ||
Sound: | ||
- "**/*.ogg" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "**/*.ogg" | ||
|
||
# Changes to the SQL subfolder | ||
SQL: | ||
- "SQL/**" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "SQL/**" | ||
|
||
# Changes to the tgui subfolder | ||
tgui: | ||
- "tgui/**" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "tgui/**" | ||
|
||
# Changes to the .Github subfolder | ||
Github: | ||
- ".github/**" | ||
|
||
Deprecated Modularization: | ||
- "whitesands/**" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- ".github/**" |
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
|
||
jobs: | ||
link_rounds: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: shiptest-ss13/[email protected] | ||
with: | ||
|
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 @@ | ||
# This is a reusable workflow to run integration tests. | ||
# This is run for every single map in ci_suite.yml. You might want to edit that instead. | ||
name: Run Integration Tests | ||
on: | ||
workflow_call: | ||
inputs: | ||
major: | ||
required: false | ||
type: string | ||
minor: | ||
required: false | ||
type: string | ||
arg: | ||
required: false | ||
default: ALL_TESTS | ||
type: string | ||
jobs: | ||
run_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@v3 | ||
- name: Setup cache | ||
id: cache-byond | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/BYOND | ||
key: ${{ runner.os }}-byond-cache-${{ hashFiles('Dockerfile') }} | ||
- 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 -o APT::Immediate-Configure=false libssl-dev:i386 | ||
bash tools/ci/install_rust_g.sh | ||
- name: Install auxmos | ||
run: | | ||
bash tools/ci/install_auxmos.sh | ||
- name: Configure version | ||
if: ${{ inputs.major }} | ||
run: | | ||
echo "BYOND_MAJOR=${{ inputs.major }}" >> $GITHUB_ENV | ||
echo "BYOND_MINOR=${{ inputs.minor }}" >> $GITHUB_ENV | ||
- name: Compile Tests | ||
run: | | ||
bash tools/ci/install_byond.sh | ||
source $HOME/BYOND/byond/bin/byondsetup | ||
tools/build/build --ci dm -DCIBUILDING -DANSICOLORS -D${{ inputs.arg }} | ||
- name: Run Tests | ||
run: | | ||
source $HOME/BYOND/byond/bin/byondsetup | ||
bash tools/ci/run_server.sh |
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.