Skip to content

Commit e6758ab

Browse files
committed
CI: AWS-LC: Specify the library directory lib.
Added the `-DCMAKE_INSTALL_LIBDIR=lib` option to specify the library directory explicitly. While the CI AWS-LC case creates the "lib" directory without the option, I observed the `lib64` directory was created on my local environment. So, this change is useful to provide information to create a local environment.
1 parent 7517bd3 commit e6758ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
git clone https://github.com/aws/aws-lc.git .
128128
AWS_LC_RELEASE=$(git tag --sort=-creatordate --list "v*" | head -1)
129129
git checkout $AWS_LC_RELEASE
130-
cmake -DCMAKE_INSTALL_PREFIX=$HOME/openssl
130+
cmake -DCMAKE_INSTALL_PREFIX=$HOME/openssl -DCMAKE_INSTALL_LIBDIR=lib
131131
make -j4 && make install
132132
;;
133133
*)

0 commit comments

Comments
 (0)