We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 536142d commit a8404d8Copy full SHA for a8404d8
.github/workflows/build.yml
@@ -19,6 +19,14 @@ jobs:
19
- name: Checkout code
20
uses: actions/checkout@v2
21
22
+ - name: Install OpenSSL 1.1
23
+ run: |
24
+ sudo apt-get update
25
+ sudo apt-get install -y libssl1.1 libssl-dev
26
+
27
+ - name: Set RUBY_CONFIGURE_OPTS
28
+ run: echo "RUBY_CONFIGURE_OPTS=--with-openssl-dir=/usr/lib/ssl" >> $GITHUB_ENV
29
30
- name: Set up Ruby ${{ matrix.ruby-version }}
31
uses: ruby/setup-ruby@v1
32
with:
0 commit comments