aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJohn Levon <john.levon@nutanix.com>2020-12-15 10:38:09 +0000
committerGitHub <noreply@github.com>2020-12-15 10:38:09 +0000
commit3148a598f4ac0711d2f46ef9186e51a4779f1bf1 (patch)
tree6215bb4e60ee0d4f8785692694990791ee9141f9 /.github/workflows
parent1e9ce657a5050d56d48ac702afb9116efc5691d3 (diff)
downloadlibvfio-user-3148a598f4ac0711d2f46ef9186e51a4779f1bf1.zip
libvfio-user-3148a598f4ac0711d2f46ef9186e51a4779f1bf1.tar.gz
libvfio-user-3148a598f4ac0711d2f46ef9186e51a4779f1bf1.tar.bz2
add CentOS 7 build to github pull_request workflow (#194)
Signed-off-by: John Levon <john.levon@nutanix.com> Reviewed-by: Thanos Makatos <thanos.makatos@nutanix.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pull_request.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index 4b6610c..4717bbe 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -17,3 +17,13 @@ jobs:
run: |
sudo apt-get -y install libjson-c-dev libcmocka-dev
make pre-push VERBOSE=1
+ centos-7:
+ runs-on: ubuntu-latest
+ container: centos:7
+ steps:
+ - uses: actions/checkout@v2
+ - name: pre-push
+ run: |
+ yum -y install make gcc-4.8.5 epel-release
+ yum -y install cmake json-c-devel libcmocka-devel openssl-devel
+ make pre-push VERBOSE=1