@@ -33,14 +33,13 @@ jobs:
3333 os : ubuntu-20.04,
3434 nif : " 2.16" ,
3535 use-cross : true,
36- features : " static_openssl" ,
3736 }
3837 - { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.16", use-cross: true }
39- - { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.16", use-cross: true, features: "static_openssl" }
38+ - { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.16", use-cross: true }
4039 - { target: aarch64-apple-darwin, os: macos-11, nif: "2.16" }
4140 - { target: x86_64-apple-darwin, os: macos-11, nif: "2.16" }
4241 - { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.16" }
43- - { target: x86_64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.16", use-cross: true, features: "static_openssl" }
42+ - { target: x86_64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.16", use-cross: true }
4443 - { target: x86_64-pc-windows-gnu, os: windows-2019, nif: "2.16" }
4544 - { target: x86_64-pc-windows-msvc, os: windows-2019, nif: "2.16" }
4645 # NIF version 2.15
@@ -49,14 +48,13 @@ jobs:
4948 os : ubuntu-20.04,
5049 nif : " 2.15" ,
5150 use-cross : true,
52- features : " static_openssl" ,
5351 }
5452 - { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.15", use-cross: true }
55- - { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.15", use-cross: true, features: "static_openssl" }
53+ - { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.15", use-cross: true }
5654 - { target: aarch64-apple-darwin, os: macos-11, nif: "2.15" }
5755 - { target: x86_64-apple-darwin, os: macos-11, nif: "2.15" }
5856 - { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.15" }
59- - { target: x86_64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.15", use-cross: true, features: "static_openssl" }
57+ - { target: x86_64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.15", use-cross: true }
6058 - { target: x86_64-pc-windows-gnu, os: windows-2019, nif: "2.15" }
6159 - { target: x86_64-pc-windows-msvc, os: windows-2019, nif: "2.15" }
6260 # NIF version 2.14
@@ -65,14 +63,13 @@ jobs:
6563 os : ubuntu-20.04,
6664 nif : " 2.14" ,
6765 use-cross : true,
68- features : " static_openssl" ,
6966 }
7067 - { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.14", use-cross: true }
71- - { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.14", use-cross: true, features: "static_openssl" }
68+ - { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.14", use-cross: true }
7269 - { target: aarch64-apple-darwin, os: macos-11, nif: "2.14" }
7370 - { target: x86_64-apple-darwin, os: macos-11, nif: "2.14" }
7471 - { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.14" }
75- - { target: x86_64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.14", use-cross: true, features: "static_openssl" }
72+ - { target: x86_64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.14", use-cross: true }
7673 - { target: x86_64-pc-windows-gnu, os: windows-2019, nif: "2.14" }
7774 - { target: x86_64-pc-windows-msvc, os: windows-2019, nif: "2.14" }
7875
@@ -122,9 +119,9 @@ jobs:
122119 shell : bash
123120 run : |
124121 if [ "${{ matrix.job.use-cross }}" == "true" ]; then
125- cross build --release --target=${{ matrix.job.target }} --features=${{ matrix.job.features }}
122+ cross build --release --target=${{ matrix.job.target }}
126123 else
127- cargo build --release --target=${{ matrix.job.target }} --features=${{ matrix.job.features }}
124+ cargo build --release --target=${{ matrix.job.target }}
128125 fi
129126
130127 - name : Rename lib to the final name
0 commit comments