Skip to content

Commit

Permalink
fix: install openssl for ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-white committed May 2, 2022
1 parent 8409138 commit 80c2da3
Showing 1 changed file with 23 additions and 15 deletions.
38 changes: 23 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,33 +46,33 @@ jobs:
os: ubuntu-latest
name: twist-i686-unknown-linux-musl.tar.gz

- target: aarch64-unknown-linux-musl
os: ubuntu-latest
name: twist-aarch64-unknown-linux-musl.tar.gz
# - target: aarch64-unknown-linux-musl
# os: ubuntu-latest
# name: twist-aarch64-unknown-linux-musl.tar.gz

- target: arm-unknown-linux-musleabihf
os: ubuntu-latest
name: twist-arm-unknown-linux-musleabihf.tar.gz
# - target: arm-unknown-linux-musleabihf
# os: ubuntu-latest
# name: twist-arm-unknown-linux-musleabihf.tar.gz

- target: x86_64-apple-darwin
os: macOS-11
name: twist-x86_64-apple-darwin.tar.gz

- target: aarch64-apple-darwin
os: macOS-11
name: twist-aarch64-apple-darwin.tar.gz
# - target: aarch64-apple-darwin
# os: macOS-11
# name: twist-aarch64-apple-darwin.tar.gz

# - target: x86_64-pc-windows-msvc
# os: windows-latest
# name: twist-x86_64-pc-windows-msvc.zip

- target: i686-pc-windows-msvc
os: windows-latest
name: twist-i686-pc-windows-msvc.zip
# - target: i686-pc-windows-msvc
# os: windows-latest
# name: twist-i686-pc-windows-msvc.zip

- target: aarch64-pc-windows-msvc
os: windows-latest
name: twist-aarch64-pc-windows-msvc.zip
# - target: aarch64-pc-windows-msvc
# os: windows-latest
# name: twist-aarch64-pc-windows-msvc.zip

- target: x86_64-unknown-freebsd
os: ubuntu-latest
Expand All @@ -84,6 +84,14 @@ jobs:
- name: Setup | Checkout
uses: actions/checkout@v3

- name: Setup | Cache
uses: Swatinem/rust-cache@v1

- name: Setup | OpenSSL (ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install -yq pkg-config libssl-dev
- name: Setup | Rust
uses: actions-rs/[email protected]
with:
Expand Down

0 comments on commit 80c2da3

Please sign in to comment.