File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 47
47
sudo apt-get install tcl8.5
48
48
./runtest --accurate --verbose
49
49
- name : module api test
50
- run : ./runtest-moduleapi --verbose
50
+ run : |
51
+ make -C tests/modules 32bit # the script below doesn't have an argument, we must build manually ahead of time
52
+ ./runtest-moduleapi --verbose
51
53
52
54
test-tls :
53
55
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -28,11 +28,14 @@ TEST_MODULES = \
28
28
29
29
all : $(TEST_MODULES )
30
30
31
+ 32bit :
32
+ $(MAKE ) CFLAGS=" -m32" LDFLAGS=" -melf_i386"
33
+
31
34
% .xo : % .c ../../src/redismodule.h
32
35
$(CC ) -I../../src $(CFLAGS ) $(SHOBJ_CFLAGS ) -fPIC -c $< -o $@
33
36
34
37
% .so : % .xo
35
- $(LD ) -o $@ $< $(SHOBJ_LDFLAGS ) $(LIBS ) -lc
38
+ $(LD ) -o $@ $< $(SHOBJ_LDFLAGS ) $(LDFLAGS ) $( LIBS ) -lc
36
39
37
40
.PHONY : clean
38
41
You can’t perform that action at this time.
0 commit comments