From b034e12d7e4e2433809f7aada72e57f712f12a3d Mon Sep 17 00:00:00 2001 From: Andrew D. France Date: Wed, 23 Jul 2025 02:20:40 -0500 Subject: Removing the dependencies from lib/ --- lib/compat53/.travis.yml | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 lib/compat53/.travis.yml (limited to 'lib/compat53/.travis.yml') diff --git a/lib/compat53/.travis.yml b/lib/compat53/.travis.yml deleted file mode 100644 index 44ae3a0..0000000 --- a/lib/compat53/.travis.yml +++ /dev/null @@ -1,47 +0,0 @@ -language: c -compiler: gcc - -sudo: false - -env: - - LUA="lua=5.1" - - LUA="lua=5.1" EXTERNAL=true - - LUA="lua=5.1" COMPILER="g++" - - LUA="lua=5.1" EXTERNAL=true COMPILER="g++" - - LUA="luajit=@v2.1 --compat=none" - - LUA="luajit=@v2.1 --compat=none" EXTERNAL=true - - LUA="luajit=@v2.1 --compat=all" - - LUA="luajit=@v2.1 --compat=all" EXTERNAL=true - - LUA="lua=5.2" - - LUA="lua=5.2" EXTERNAL=true - - LUA="lua=5.2" COMPILER="g++" - - LUA="lua=5.2" EXTERNAL=true COMPILER="g++" - -branches: - only: - - master - -git: - depth: 3 - -notifications: - email: false - -before_install: - - pip install --user hererocks - - hererocks old --$LUA - - test -e old/bin/lua || (cd old/bin && ln -s luajit* lua) - - hererocks new --lua=5.3 - -install: - - export CC="${COMPILER:-gcc}" DEF="" SRC="" CFLAGS="-Wall -Wextra -Ic-api -O2 -fPIC" - - if [ "x${EXTERNAL:-}" = xtrue ]; then DEF="-DCOMPAT53_PREFIX=compat53" SRC="c-api/compat-5.3.c"; fi - - ${CC} ${CFLAGS} -Iold/include ${DEF} -shared -o old/testmod.so tests/testmod.c ${SRC} - - ${CC} ${CFLAGS} -Inew/include ${DEF} -shared -o new/testmod.so tests/testmod.c ${SRC} - - gcc ${CFLAGS} -Iold/include ${DEF} -shared -o old/compat53.so ltablib.c lutf8lib.c lstrlib.c liolib.c ${SRC} - -script: - - (cd old && bin/lua ../tests/test.lua) > old.txt - - (cd new && bin/lua ../tests/test.lua) > new.txt - - diff old.txt new.txt || true - -- cgit v1.2.3-59-g8ed1b