summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4d6c1c14c..d28d331db 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -47,3 +47,22 @@ jobs:
- name: make
run: make MALLOC=libc
+ build-centos7-jemalloc:
+ runs-on: ubuntu-latest
+ container: centos:7
+ steps:
+ - uses: actions/checkout@v2
+ - name: make
+ run: |
+ yum -y install gcc make
+ make
+
+ build-centos6-jemalloc:
+ runs-on: ubuntu-latest
+ container: centos:6
+ steps:
+ - uses: actions/checkout@v1
+ - name: make
+ run: |
+ yum -y install gcc make
+ make