forked from cmss13-devs/cmss13
-
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.
Merge branch 'master' of https://github.com/Venuska1117/cmss13 into m…
…apping-kutjevo-1
- Loading branch information
Showing
3,340 changed files
with
371,419 additions
and
86,190 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
# Format is version: map | ||
# Example: | ||
# 500.1337: runtimestation | ||
|
||
516.1648: runtime |
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 |
---|---|---|
|
@@ -6,29 +6,31 @@ on: | |
merge_group: | ||
jobs: | ||
run_linters: | ||
if: "!contains(github.event.head_commit.message, '[ci skip]')" | ||
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | ||
name: Run Linters | ||
runs-on: ubuntu-latest | ||
concurrency: | ||
group: run_linters-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Restore SpacemanDMM cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/SpacemanDMM | ||
key: ${{ runner.os }}-spacemandmm-${{ secrets.CACHE_PURGE_KEY }} | ||
- name: Restore Yarn cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: tgui/.yarn/cache | ||
key: ${{ runner.os }}-yarn-${{ secrets.CACHE_PURGE_KEY }}-${{ hashFiles('tgui/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
- name: Restore Rust cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo | ||
key: ${{ runner.os }}-rust | ||
|
@@ -65,6 +67,9 @@ jobs: | |
name: Lint with OpenDream | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 9 | ||
- uses: actions/checkout@v4 | ||
- uses: robinraju/[email protected] | ||
with: | ||
|
@@ -75,7 +80,7 @@ jobs: | |
- run: ./DMCompiler_linux-x64/DMCompiler --suppress-unimplemented colonialmarines.dme | ||
|
||
compile_all_maps: | ||
if: "!contains(github.event.head_commit.message, '[ci skip]')" | ||
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | ||
name: Compile Maps | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -92,7 +97,7 @@ jobs: | |
tools/build/build --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS | ||
find_all_maps: | ||
if: "!contains(github.event.head_commit.message, '[ci skip]')" | ||
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | ||
name: Find Maps to Test | ||
runs-on: ubuntu-latest | ||
outputs: | ||
|
@@ -117,7 +122,7 @@ jobs: | |
ALTERNATE_TESTS_JSON=$(jq -nRc '[inputs | capture("^(?<major>[0-9]+)\\.(?<minor>[0-9]+): (?<map>.+)$")]' .github/alternate_byond_versions.txt) | ||
echo "alternate_tests=$ALTERNATE_TESTS_JSON" >> $GITHUB_OUTPUT | ||
run_all_tests: | ||
if: "!contains(github.event.head_commit.message, '[ci skip]')" | ||
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | ||
name: Unit Tests | ||
needs: [find_all_maps] | ||
strategy: | ||
|
@@ -132,7 +137,7 @@ jobs: | |
map: ${{ matrix.map }} | ||
|
||
run_alternate_tests: | ||
if: "!contains(github.event.head_commit.message, '[ci skip]') && needs.find_all_maps.outputs.alternate_tests != '[]'" | ||
if: ( !contains(github.event.head_commit.message, '[ci skip]') && needs.find_all_maps.outputs.alternate_tests != '[]' ) | ||
name: Alternate Tests | ||
needs: [find_all_maps] | ||
strategy: | ||
|
@@ -149,15 +154,15 @@ jobs: | |
minor: ${{ matrix.setup.minor }} | ||
|
||
check_alternate_tests: | ||
if: "!contains(github.event.head_commit.message, '[ci skip]') && needs.find_all_maps.outputs.alternate_tests != '[]'" | ||
if: ( !contains(github.event.head_commit.message, '[ci skip]') && needs.find_all_maps.outputs.alternate_tests != '[]' ) | ||
name: Check Alternate Tests | ||
needs: [run_alternate_tests] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo Alternate tests passed. | ||
|
||
test_windows: | ||
if: "!contains(github.event.head_commit.message, '[ci skip]')" | ||
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | ||
name: Windows Build | ||
runs-on: windows-latest | ||
concurrency: | ||
|
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 |
---|---|---|
|
@@ -13,3 +13,4 @@ engine = "auxtools" | |
|
||
[diagnostics] | ||
var_in_proc_parameter = "error" | ||
redefined_proc = "warning" |
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
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.