Skip to content

Commit

Permalink
centos8 quick add to rgsync (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
chayim authored Nov 21, 2021
1 parent 54e875e commit ade71d4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ workflows:
- platform-build:
matrix:
parameters:
platform: [bionic, xenial, centos7]
platform: [bionic, xenial, centos7, centos8]
context: common
<<: *on-any-branch
- deploy-artifacts:
Expand Down
11 changes: 7 additions & 4 deletions build/reqpacks/system-setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,21 @@ def common_first(self):
self.run("%s/bin/enable-utf8" % READIES)

def debian_compat(self):
self.run("%s/bin/getgcc" % READIES)
self.run("%s/bin/getgcc" % READIES)
self.install("libsqlite3-dev")
self.install("unixodbc-dev")

def redhat_compat(self):
self.run("%s/bin/getgcc" % READIES)
self.run("%s/bin/getgcc" % READIES)
self.install("redhat-lsb-core")
self.install("libsqlite3x-devel")
if self.os_version[0] >= 8 and self.dist == 'centos':
self.install("sqlite-devel")
else:
self.install("libsqlite3x-devel")
self.install("unixODBC-devel")

def fedora(self):
self.run("%s/bin/getgcc" % READIES)
self.run("%s/bin/getgcc" % READIES)

def macos(self):
self.install_gnu_utils()
Expand Down

0 comments on commit ade71d4

Please sign in to comment.