LETS COMMENCE CI DEBUGGING

This commit is contained in:
AffectedArc07
2021-02-02 21:51:44 +00:00
parent e869c81a9e
commit 5ece9f0f92
2 changed files with 4 additions and 1 deletions
+1
View File
@@ -80,6 +80,7 @@ jobs:
sudo dpkg --add-architecture i386
sudo apt update || true
sudo apt install libssl1.1:i386
ldd librust_g.so
- name: Compile & Run Unit Tests
run: |
tools/ci/install_byond.sh
+3 -1
View File
@@ -1,5 +1,7 @@
/// Locator for the RUSTG DLL or SO depending on system type
#ifndef RUST_G
/// Locator for the RUSTG DLL or SO depending on system type. Override if needed.
#define RUST_G (world.system_type == UNIX ? "./librust_g.so" : "./rust_g.dll")
#endif
// Gets the version of RUSTG
/proc/rustg_get_version() return call(RUST_G, "get_version")()