Skip to content

Commit 4e48967

Browse files
committed
fixup! fixup! fixup! fixup! ci(freebsd): fix build failure related to aws-lc
1 parent 42c6dd3 commit 4e48967

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1302,7 +1302,9 @@ jobs:
13021302
usesh: true
13031303
copyback: false
13041304
prepare: |
1305-
pkg install -y git gmake bash sudo cmake-core llvm-devel-lite
1305+
pkg install -y git gmake bash sudo \
1306+
`# The following packages are required by 'aws-lc-rs':` \
1307+
cmake-core llvm-devel-lite rust-bindgen-cli
13061308
run: |
13071309
echo "========="
13081310
echo "create non-root user and log into it"
@@ -1332,7 +1334,9 @@ jobs:
13321334
usesh: true
13331335
copyback: false
13341336
prepare: |
1335-
pkg install -y git gmake bash sudo cmake-core llvm-devel-lite
1337+
pkg install -y git gmake bash sudo \
1338+
`# The following packages are required by 'aws-lc-rs':` \
1339+
cmake-core llvm-devel-lite rust-bindgen-cli
13361340
run: |
13371341
echo "========="
13381342
echo "create non-root user and log into it"

ci/actions-templates/freebsd-builds-template.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ jobs: # skip-master skip-stable
2222
usesh: true
2323
copyback: false
2424
prepare: |
25-
pkg install -y git gmake bash sudo cmake-core llvm-devel-lite
25+
pkg install -y git gmake bash sudo \
26+
`# The following packages are required by 'aws-lc-rs':` \
27+
cmake-core llvm-devel-lite rust-bindgen-cli
2628
run: |
2729
echo "========="
2830
echo "create non-root user and log into it"

ci/freebsd/script.bash

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export BUILD_PROFILE="release"
4343

4444
# HACK: Works around `aws-lc-rs`' issue with internal bindgen on FreeBSD.
4545
# See: https://github.com/aws/aws-lc-rs/issues/476#issuecomment-2263118015
46-
cargo install --force --locked bindgen-cli
4746
export AWS_LC_SYS_EXTERNAL_BINDGEN=1
4847

4948
bash ci/run.bash

0 commit comments

Comments
 (0)