diff options
author | ShutterQuick <shutter@canternet.org> | 2020-10-10 19:25:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-10 18:25:24 +0100 |
commit | 219f8e62623ff0c3002be764c1dbf7201d0293db (patch) | |
tree | 0c466767e867f8d1e645afef1e971d6610a42385 /.github/workflows/ci-macos.yml | |
parent | 5f71fbdbffeecff18914fbe523e795a1d7680b47 (diff) |
Implement support for Argon2 password hashing.
Resolves #1540.
Diffstat (limited to '.github/workflows/ci-macos.yml')
-rw-r--r-- | .github/workflows/ci-macos.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index db155781a..21296fc32 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -9,13 +9,13 @@ jobs: 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:/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 + TEST_BUILD_MODULES: argon2 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 - name: Install dependencies run: | brew update - for PACKAGE in pkg-config gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre re2 sqlite tre; + for PACKAGE in pkg-config argon2 gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre re2 sqlite tre; do brew install $PACKAGE || brew upgrade $PACKAGE done |