Remove travis-ci leftovers

Travis CI stopped providing CI minutes for open-source projects
some time ago and we have migrated to GitHub actions.

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
This commit is contained in:
Radostin Stoyanov 2025-09-26 16:54:49 +01:00 committed by Andrei Vagin
parent 25f8be0f60
commit b25ff1d336
9 changed files with 15 additions and 64 deletions

View file

@ -3,5 +3,5 @@
import ctypes
libc = ctypes.CDLL(None)
# libc may not have memfd_create (e.g., centos on travis)
# libc may not have memfd_create (e.g., centos)
libc.memfd_create("test".encode('utf8'), 0)

View file

@ -27,7 +27,7 @@ ifeq ($(ARCH),arm)
else ifeq ($(ARMV),7)
ARCHCFLAGS += -march=armv7-a+fp
else ifeq ($(ARMV),8)
# To build aarch32 on armv8 Travis-CI (see criu Makefile)
# To build aarch32 on armv8 (see criu Makefile)
ARCHCFLAGS += -march=armv7-a
ARMV := 7
endif