mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-21 20:20:33 +01:00
## About The Pull Request <img width="908" height="878" alt="image" src="https://github.com/user-attachments/assets/7262576b-f7d9-4be4-8cff-6662f85698fd" /> Our application of Ubuntu 22.04 versus Ubuntu 24.04 (which is presently the version for `ubuntu-latest`) is pretty inconsistent even within the same suites, I figure we bump it up and set one standard moving forwards. This PR was originally set to autoset it to `ubuntu-latest` but wow the issues are agonizing so let's just bump it up and keep it synchronized also bumps python to `3.11.0` and whatever dependency versions needed that as that was necessary
37 lines
697 B
Bash
37 lines
697 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.2.16
|
|
|
|
# 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
|
|
|