We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f310e61 commit 139bf7bCopy full SHA for 139bf7b
1 file changed
.github/workflows/ci.yml
@@ -41,12 +41,10 @@ jobs:
41
- name: Install system dependencies
42
run: |
43
sudo apt-get update
44
- ODBC_PKG="libodbc1"
45
- if ! apt-cache show libodbc1 >/dev/null 2>&1; then
46
- ODBC_PKG="libodbc2"
+ if ! sudo apt-get install -y --no-install-recommends libodbc1; then
+ sudo apt-get install -y --no-install-recommends libodbc2
47
fi
48
sudo apt-get install -y --no-install-recommends \
49
- "$ODBC_PKG" \
50
gcc \
51
g++ \
52
make \
0 commit comments