You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2023/02/23 20:58:23 UTC

[couchdb-ci] branch allow-users-to-enable-fips-mode updated (1023d2a -> 0b7f452)

This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a change to branch allow-users-to-enable-fips-mode
in repository https://gitbox.apache.org/repos/asf/couchdb-ci.git


 discard 1023d2a  Add --enable-fips Erlang configure option
     new 0b7f452  Add --enable-fips Erlang configure option

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1023d2a)
            \
             N -- N -- N   refs/heads/allow-users-to-enable-fips-mode (0b7f452)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[couchdb-ci] 01/01: Add --enable-fips Erlang configure option

Posted by va...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch allow-users-to-enable-fips-mode
in repository https://gitbox.apache.org/repos/asf/couchdb-ci.git

commit 0b7f452c4f8c6d7bf2d8653e394dd8544b9e610f
Author: Nick Vatamaniuc <va...@gmail.com>
AuthorDate: Thu Feb 23 15:43:00 2023 -0500

    Add --enable-fips Erlang configure option
    
    By itself this doesn't enable FIPS mode, just allows users to toggle Erlang's
    FIPS mode if their crypto library happens to support it.
    
    After this `crypto:info_fips().` sould start returning `not_enabled` as opposed
    `not_supported` is it does currently.
    
    https://www.erlang.org/docs/23/apps/crypto/fips.html
---
 bin/source-erlang.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/source-erlang.sh b/bin/source-erlang.sh
index 42f5acb..f664d66 100755
--- a/bin/source-erlang.sh
+++ b/bin/source-erlang.sh
@@ -80,7 +80,7 @@ fi
   --without-debugger --without-observer --without-et  --without-cosEvent \
   --without-cosEventDomain --without-cosFileTransfer \
   --without-cosNotification --without-cosProperty --without-cosTime \
-  --without-cosTransactions --without-orber ${DISABLE_JIT}
+  --without-cosTransactions --without-orber --enable-fips ${DISABLE_JIT}
 
 make -j $(nproc)
 make install