diff options
author | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:46:34 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:46:34 +0000 |
commit | eb0e5c89b2a1e59091001ffd0e54582c2ff04212 (patch) | |
tree | 6caad8512fd05dd74a890edf0e8658731b4e63c2 /.github | |
parent | 84c2f8d3fc417e97ed336c48b8a5c4eea71b52aa (diff) |
Remove the m_regex_pcre module.
Users should migrate to m_regex_pcre2 instead.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-linux.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 1794ededf..ba196936d 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -21,14 +21,13 @@ jobs: libldap2-dev \ libmysqlclient-dev \ libpcre2-dev \ - libpcre3-dev \ libsqlite3-dev \ libssl-dev \ libtre-dev \ ninja-build - name: Enable extras run: | - for MODULE in m_ldap.cpp m_ldap_authentication.cpp m_ldap_oper.cpp m_mysql.cpp m_regex_pcre.cpp m_regex_pcre2.cpp m_regex_posix.cpp m_regex_tre.cpp m_sql_authentication.cpp m_sql_log.cpp m_sql_oper.cpp m_sqlite.cpp m_ssl_gnutls.cpp m_ssl_openssl.cpp stats + for MODULE in m_ldap.cpp m_ldap_authentication.cpp m_ldap_oper.cpp m_mysql.cpp m_regex_pcre2.cpp m_regex_posix.cpp m_regex_tre.cpp m_sql_authentication.cpp m_sql_log.cpp m_sql_oper.cpp m_sqlite.cpp m_ssl_gnutls.cpp m_ssl_openssl.cpp stats do ln -s ${{ github.workspace }}/modules/extra/$MODULE ${{ github.workspace }}/modules done |