mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-18 11:36:24 +01:00
84f88f5897
## About The Pull Request Turns out the version we are using has a memory segmentation issue that has been fixed in later versions. https://github.com/oven-sh/bun/issues/23240 For server ops: remember to update your PreCompile.sh ## Why It's Good For The Game Improved stability, probably fixes some CI flakiness ## Changelog 🆑 server: updates bun version to 1.3.5, and adds automated validation for tgs /🆑
37 lines
696 B
Bash
37 lines
696 B
Bash
#!/bin/sh
|
|
|
|
#Project dependencies file
|
|
#Final authority on what's required to fully build the project
|
|
|
|
# byond version. Also must be updated in .tgs.yml
|
|
export BYOND_MAJOR=516
|
|
export BYOND_MINOR=1659
|
|
|
|
#rust_g git tag
|
|
export RUST_G_VERSION=4.2.0
|
|
|
|
# node version
|
|
export NODE_VERSION_LTS=22.11.0
|
|
|
|
# Bun version
|
|
export BUN_VERSION=1.3.5
|
|
|
|
# SpacemanDMM git tag
|
|
export SPACEMAN_DMM_VERSION=suite-1.11
|
|
|
|
# Python version for mapmerge and other tools
|
|
export PYTHON_VERSION=3.11.0
|
|
|
|
#dreamluau repo
|
|
export DREAMLUAU_REPO="tgstation/dreamluau"
|
|
|
|
#dreamluau git tag
|
|
export DREAMLUAU_VERSION=0.1.2
|
|
|
|
#hypnagogic repo
|
|
export CUTTER_REPO=spacestation13/hypnagogic
|
|
|
|
#hypnagogic git tag
|
|
export CUTTER_VERSION=v5.0.0
|
|
|