Skip to content

Commit a79be99

Browse files
authored
Update ci.yml
1 parent a37bc50 commit a79be99

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,11 @@ jobs:
2626
uses: actions/setup-node@v1
2727
with:
2828
node-version: ${{ matrix.node-version }}
29+
# Old versions of bedrock use old libssl that Ubuntu no longer ships with; need manual install
30+
- name: (Linux) Install libssl 1.1
31+
if: runner.os == 'Linux'
32+
run: |
33+
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
34+
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
2935
- run: npm install
3036
- run: npm test

0 commit comments

Comments
 (0)