Skip to content

Commit

Permalink
Manually install openssl in build
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Helberg committed Sep 21, 2024
1 parent cf77d8c commit b241a53
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: SSL
run: sudo apt install libssl-dev openssl libssl-dev:armhf
if: ${{ matrix.platform.os == 'ubuntu-latest' }}
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
Expand All @@ -142,12 +145,12 @@ jobs:
strategy:
matrix:
platform:
- release_for: FreeBSD-x86_64
os: ubuntu-20.04
target: x86_64-unknown-freebsd
bin: middleman
name: middleman-FreeBSD-x86_64.tar.gz
command: build
#- release_for: FreeBSD-x86_64
# os: ubuntu-20.04
# target: x86_64-unknown-freebsd
# bin: middleman
# name: middleman-FreeBSD-x86_64.tar.gz
# command: build

- release_for: Linux-x86_64
os: ubuntu-20.04
Expand Down Expand Up @@ -188,6 +191,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: SSL
run: sudo apt install libssl-dev openssl libssl-dev:armhf
if: ${{ matrix.platform.os == 'ubuntu-latest' }}
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
Expand Down

0 comments on commit b241a53

Please sign in to comment.