diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-18 22:07:31 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-18 22:17:14 +0000 |
commit | 5a72d8783ec5ac12d0a0c33e0b4f7e928a51157b (patch) | |
tree | d2428715124f6a077f635143e9ee56b16e57323b /.github | |
parent | e6770bc2fd090ea60751a66492912b953e2979f8 (diff) |
Add verify-only support for POSIX crypt() hashes from Atheme.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-alpine.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ci-linux.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci-alpine.yml b/.github/workflows/ci-alpine.yml index 6a0466e44..c2a679303 100644 --- a/.github/workflows/ci-alpine.yml +++ b/.github/workflows/ci-alpine.yml @@ -37,7 +37,7 @@ jobs: - name: Enable extras run: | - for MODULE in enc_argon2 ldap mysql regex_pcre2 regex_posix regex_tre sqlite ssl_gnutls ssl_openssl + for MODULE in enc_argon2 enc_posix ldap mysql regex_pcre2 regex_posix regex_tre sqlite ssl_gnutls ssl_openssl do ln -s $PWD/modules/extra/$MODULE.cpp $PWD/modules done diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index d102be965..7af1b136a 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -32,7 +32,7 @@ jobs: - name: Enable extras run: | - for MODULE in ldap mysql regex_pcre2 regex_posix regex_tre sqlite ssl_gnutls ssl_openssl + for MODULE in enc_argon2 enc_posix ldap mysql regex_pcre2 regex_posix regex_tre sqlite ssl_gnutls ssl_openssl do ln -s ${{ github.workspace }}/modules/extra/$MODULE.cpp ${{ github.workspace }}/modules done |