File tree 1 file changed +0
-36
lines changed
1 file changed +0
-36
lines changed Original file line number Diff line number Diff line change 37
37
# TEST_PREFIX: valgrind --error-exitcode=99 --track-origins=yes --leak-check=full
38
38
# run: $GITHUB_WORKSPACE/test.sh
39
39
40
- centos7 :
41
- name : CentOS 7
42
- runs-on : ubuntu-latest
43
- container : centos:7
44
- steps :
45
- - uses : actions/checkout@v3
46
-
47
- - name : Install dependencies
48
- run : |
49
- yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
50
- yum -y --enablerepo=remi install redis
51
- yum -y install gcc gcc-c++ make openssl openssl-devel cmake3 valgrind libevent-devel
52
-
53
- - name : Build using cmake
54
- env :
55
- EXTRA_CMAKE_OPTS : -DENABLE_EXAMPLES:BOOL=ON -DENABLE_SSL:BOOL=ON -DENABLE_SSL_TESTS:BOOL=ON -DENABLE_ASYNC_TESTS:BOOL=ON
56
- CFLAGS : -Werror
57
- CXXFLAGS : -Werror
58
- run : mkdir build && cd build && cmake3 .. && make
59
-
60
- - name : Build using Makefile
61
- run : USE_SSL=1 TEST_ASYNC=1 make
62
-
63
- - name : Run tests
64
- env :
65
- SKIPS_AS_FAILS : 1
66
- TEST_SSL : 1
67
- run : $GITHUB_WORKSPACE/test.sh
68
-
69
- - name : Run tests under valgrind
70
- env :
71
- SKIPS_AS_FAILS : 1
72
- TEST_SSL : 1
73
- TEST_PREFIX : valgrind --error-exitcode=99 --track-origins=yes --leak-check=full
74
- run : $GITHUB_WORKSPACE/test.sh
75
-
76
40
centos8 :
77
41
name : RockyLinux 8
78
42
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments