summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-04-06 10:59:37 +0100
committerSadie Powell <sadie@witchery.services>2020-04-06 13:20:02 +0100
commit620c6f9f2ec3340223dd30193d42f25efa5e5493 (patch)
treef7f626efa554497741cb912253bb214dfdd6c47c /.github
parentc353cb5aeef70ce14c2c168adc683a620583d952 (diff)
Fix building the sqlite3 module on the macOS CI.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-macos.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml
index 529f5dea8..c5fe3c3e1 100644
--- a/.github/workflows/ci-macos.yml
+++ b/.github/workflows/ci-macos.yml
@@ -8,7 +8,7 @@ jobs:
env:
CXXFLAGS: -std=${{ matrix.standard }} -I/usr/local/opt/openssl@1.1/include -Wno-error=deprecated-declarations
LDFLAGS: -L/usr/local/opt/openssl@1.1/lib
- PKG_CONFIG_PATH: /usr/local/opt/openssl@1.1/lib/pkgconfig
+ PKG_CONFIG_PATH: /usr/local/opt/openssl@1.1/lib/pkgconfig:/usr/local/opt/sqlite/lib/pkgconfig
TEST_BUILD_MODULES: geo_maxmind ldap mysql pgsql regex_pcre regex_posix regex_re2 regex_stdlib regex_tre sqlite3 ssl_gnutls ssl_mbedtls ssl_openssl sslrehashsignal
steps:
- uses: actions/checkout@v2
@@ -16,7 +16,7 @@ jobs:
run: |
brew update
brew upgrade
- brew install pkg-config gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre re2 sqlite3 tre
+ brew install pkg-config gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre re2 sqlite tre
brew link --force --overwrite libpq
brew link --force --overwrite mysql-client
- name: Run test-build