mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-06 15:02:29 +00:00
cl
refactor: BSQL has been replaced with rust-g, improving SQL reliability and safety.
/cl
Queries were parameterized as much as possible. Careful code read by someone else also versed in SQL would be a good idea. Things seemed fine spot-testing roundstart, library, bans, and polls, but more stress-testing may be useful.
Also updates rust-g to v0.4.5:
Improved Linux .so detection
Perlin noise functions
Also updates Travis script to bionic.
27 lines
575 B
Bash
Executable File
27 lines
575 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#Project dependencies file
|
|
#Final authority on what's required to fully build the project
|
|
|
|
# byond version
|
|
# Extracted from the Dockerfile. Change by editing Dockerfile's FROM command.
|
|
LIST=($(sed -n 's/.*byond:\([0-9]\+\)\.\([0-9]\+\).*/\1 \2/p' Dockerfile))
|
|
export BYOND_MAJOR=${LIST[0]}
|
|
export BYOND_MINOR=${LIST[1]}
|
|
unset LIST
|
|
|
|
#rust_g git tag
|
|
export RUST_G_VERSION=0.4.5
|
|
|
|
#node version
|
|
export NODE_VERSION=12
|
|
|
|
# PHP version
|
|
export PHP_VERSION=7.2
|
|
|
|
# SpacemanDMM git tag
|
|
export SPACEMAN_DMM_VERSION=suite-1.4
|
|
|
|
# Extools git tag
|
|
export EXTOOLS_VERSION=v0.0.6
|