Skip to content

Commit dce692d

Browse files
committed
ci: Revert changes to enable include-openssl in pre-built binaries
1 parent 7a32c80 commit dce692d

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,6 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
target:
19-
- x86_64-unknown-linux-musl
20-
- aarch64-unknown-linux-musl
21-
- armv7-unknown-linux-musleabi
22-
- x86_64-apple-darwin
23-
- aarch64-apple-darwin
24-
- x86_64-pc-windows-msvc
25-
feature:
26-
- include-openssl
27-
- default
2818
include:
2919
- target: x86_64-unknown-linux-musl
3020
os: ubuntu-latest
@@ -55,16 +45,16 @@ jobs:
5545
if: ${{ matrix.cross }}
5646
run: |
5747
cargo install cross --git https://github.com/cross-rs/cross.git
58-
cross build --release --target ${{ matrix.target }} --features ${{ matrix.feature }}
48+
cross build --release --target ${{ matrix.target }} --features include-openssl
5949
6050
- name: Run Cargo
6151
if: ${{ !matrix.cross }}
62-
run: cargo build --release --target ${{ matrix.target }} --features ${{ matrix.feature }}
52+
run: cargo build --release --target ${{ matrix.target }} --features include-openssl
6353

6454
- name: create artifact directory
6555
shell: bash
6656
run: |
67-
directory=sshping-${{ matrix.target }}-${{ matrix.feature }}
57+
directory=sshping-${{ matrix.target }}
6858
mkdir $directory
6959
cp README.md LICENSE $directory
7060
if [ -f target/${{ matrix.target }}/release/sshping.exe ]; then

0 commit comments

Comments
 (0)