Skip to content

Commit 73e0334

Browse files
committed
Updated BoringSSL CI commit to latest, add AWS-LC to test matrix
1 parent 61d3a2f commit 73e0334

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,9 @@ jobs:
153153
- false
154154
library:
155155
- name: boringssl
156-
version: 5697a9202615925696f8dc7f4e286d44d474769e
156+
version: 3c7053975b35a631f477f42f07502003d35aa2ff
157+
- name: aws-lc
158+
version: vendored
157159
- name: openssl
158160
version: vendored
159161
- name: openssl
@@ -216,6 +218,12 @@ jobs:
216218
- library:
217219
name: boringssl
218220
bindgen: true
221+
- library:
222+
name: aws-lc
223+
bindgen: true
224+
- target: arm-unknown-linux-gnueabihf # aws-lc-sys does not provide generated bindings for 32bit arm.
225+
library:
226+
name: aws-lc
219227
name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }}
220228
runs-on: ubuntu-latest
221229
env:
@@ -357,7 +365,10 @@ jobs:
357365
if [[ "${{ matrix.library.name }}" == "boringssl" ]]; then
358366
features="--features unstable_boringssl"
359367
fi
360-
if [[ "${{ matrix.library.version }}" == "vendored" ]]; then
368+
if [[ "${{ matrix.library.name }}" == "aws-lc" ]]; then
369+
features="--features aws-lc"
370+
fi
371+
if [[ "${{ matrix.library.name }}" == "openssl" && "${{ matrix.library.version }}" == "vendored" ]]; then
361372
features="--features vendored"
362373
fi
363374
if [[ "${{ matrix.bindgen }}" == "true" ]]; then

openssl-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ aws-lc = ["aws-lc-sys"]
2121
[dependencies]
2222
libc = "0.2"
2323
bssl-sys = { version = "0.1.0", optional = true }
24-
aws-lc-sys = { version = "0.3.0", optional = true, features = ["ssl"] }
24+
aws-lc-sys = { version = "0.3.1", optional = true, features = ["ssl"] }
2525

2626
[build-dependencies]
2727
bindgen = { version = "0.60.1", optional = true }

0 commit comments

Comments
 (0)