diff options
author | Sadie Powell <sadie@witchery.services> | 2024-01-09 21:14:41 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-01-09 21:25:44 +0000 |
commit | 349ae043b68e65314dff93aa5a1eee92acfe7e9a (patch) | |
tree | fd3aa43e8e3b3d57bae8838e52cd9e89b49dbbd4 /.github | |
parent | 710e7dd3a2b59afd7a2b49aef83aedb89050c704 (diff) |
Always build the stats modules.
These have no external dependencies so it makes no sense to not
always build them.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-linux.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index a68d75ab5..e30226cdc 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -28,7 +28,7 @@ jobs: 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_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 do ln -s ${{ github.workspace }}/modules/extra/$MODULE ${{ github.workspace }}/modules done |