Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/actions/install-openssl/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,12 @@ runs:
./Configure --prefix=$HOME/openssl --libdir=lib linux-x86_64
make depend && make -j4 && make install_sw
;;
3.*)
3.* | 4.*)
OPENSSL_COMMIT=openssl-
OPENSSL_COMMIT+=$(echo ${{ inputs.version }})
git clone -b $OPENSSL_COMMIT --depth 1 https://github.com/openssl/openssl.git .
echo "Git commit: $(git rev-parse HEAD)"
if [[ ${{ inputs.version }} == 3.5* ]]; then
./Configure --prefix=$HOME/openssl --libdir=lib enable-fips no-tests no-legacy
else
./Configure --prefix=$HOME/openssl --libdir=lib enable-fips no-tests
fi
./Configure --prefix=$HOME/openssl --libdir=lib enable-fips no-tests
make -j4 && make install_sw && make install_fips
;;
*)
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- '3.2'
- '3.1'
openssl:
- '4.0.0'
- '3.6.0'
- '3.5.4'
- '3.4.3'
Expand All @@ -35,6 +36,15 @@ jobs:
- '3.1.8'
- '3.0.18'
- '1.1.1w'
exclude:
# Ruby 3.1-3.3 bundle an `openssl` gem too old for OpenSSL 4.0.
# Re-enable once upstream ships patch releases that bump it.
- ruby: '3.3'
openssl: '4.0.0'
- ruby: '3.2'
openssl: '4.0.0'
- ruby: '3.1'
openssl: '4.0.0'
include:
- ruby: truffleruby
- ruby: '3.0'
Expand Down
Loading