mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-17 19:07:26 +01:00
e0f4b3b7fc
This PR updates the repo fully to Byond 516.1673. We now have access to Associative Lists, Vectors, Matrices, and a huge number of math improvements tha will allow us to catapult the repo into a new era of simulationism. I have tested this PR to verify that it works. <img width="1076" height="1079" alt="image" src="https://github.com/user-attachments/assets/c69a7276-7611-4a59-8630-46d8dd8a12a6" />
29 lines
956 B
Bash
Executable File
29 lines
956 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z ${GITHUB_ENV+x} ]; then GITHUB_ENV=/dev/null; fi
|
|
|
|
export BYOND_MAJOR=516
|
|
echo "BYOND_MAJOR=$BYOND_MAJOR" >> "$GITHUB_ENV"
|
|
export BYOND_MINOR=1673
|
|
echo "BYOND_MINOR=$BYOND_MINOR" >> "$GITHUB_ENV"
|
|
|
|
export RUST_G_VERSION=v3.1.0+a1
|
|
echo "RUST_G_VERSION=$RUST_G_VERSION" >> "$GITHUB_ENV"
|
|
export FLYWAY_BUILD=9.21.1
|
|
echo "FLYWAY_BUILD=$FLYWAY_BUILD" >> "$GITHUB_ENV"
|
|
export SPACEMAN_DMM_VERSION=suite-1.11
|
|
echo "SPACEMAN_DMM_VERSION=$SPACEMAN_DMM_VERSION" >> "$GITHUB_ENV"
|
|
|
|
#node version
|
|
export NODE_VERSION=20
|
|
echo "NODE_VERSION=$NODE_VERSION" >> "$GITHUB_ENV"
|
|
export NODE_VERSION_LTS=20.12.0
|
|
echo "NODE_VERSION_LTS=$NODE_VERSION_LTS" >> "$GITHUB_ENV"
|
|
|
|
|
|
# Python version for mapmerge and other tools
|
|
# Ensure in https://www.python.org/ftp/python/<VERSION> there is a file called python-<VERSION>-embed-amd64.zip,
|
|
# that's what the mapmerge2 script looks for
|
|
export PYTHON_VERSION=3.11.9
|
|
echo "PYTHON_VERSION=$PYTHON_VERSION" >> "$GITHUB_ENV"
|