summaryrefslogtreecommitdiff
path: root/.github/workflows/daily.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/daily.yml')
-rw-r--r--.github/workflows/daily.yml29
1 files changed, 25 insertions, 4 deletions
diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml
index 087b9f2ef..1ccd99805 100644
--- a/.github/workflows/daily.yml
+++ b/.github/workflows/daily.yml
@@ -124,12 +124,33 @@ jobs:
- uses: actions/checkout@v2
- name: make
run: |
- yum -y install centos-release-scl
- yum -y install devtoolset-7
- scl enable devtoolset-7 "make"
+ yum -y install gcc make
+ make
- name: test
run: |
- yum -y install tcl
+ yum -y install which tcl
+ ./runtest --accurate --verbose
+ - name: module api test
+ run: ./runtest-moduleapi --verbose
+ - name: sentinel tests
+ run: ./runtest-sentinel
+ - name: cluster tests
+ run: ./runtest-cluster
+
+ test-centos6-jemalloc:
+ runs-on: ubuntu-latest
+ if: github.repository == 'redis/redis'
+ container: centos:6
+ timeout-minutes: 14400
+ steps:
+ - uses: actions/checkout@v1
+ - name: make
+ run: |
+ yum -y install gcc make
+ make
+ - name: test
+ run: |
+ yum -y install which tcl util-linux-ng
./runtest --accurate --verbose
- name: module api test
run: ./runtest-moduleapi --verbose