We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81dc78e commit 3ae47faCopy full SHA for 3ae47fa
.github/setup_ci.sh
@@ -247,11 +247,8 @@ fi
247
if [ ! -z "${INSTALL_AWSLC}" ]; then
248
(cd ${HOME} && git clone --depth 1 --branch v1.42.0 https://github.com/aws/aws-lc.git &&
249
cd ${HOME}/aws-lc && mkdir build && cd build &&
250
- cmake -GNinja -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DBUILD_TESTING=OFF .. && sudo ninja install &&
251
- mkdir -p /opt/aws-lc/lib && mkdir /opt/aws-lc/bin &&
252
- cp ${HOME}/aws-lc/build/crypto/libcrypto.a /opt/aws-lc/lib &&
253
- cp -r ${HOME}/aws-lc/include /opt/aws-lc &&
254
- cp ${HOME}/aws-lc/build/tool-openssl/openssl /opt/aws-lc/bin/)
+ cmake -GNinja -DCMAKE_INSTALL_PREFIX=/opt/aws-lc -DBUILD_TESTING=OFF .. && sudo ninja install &&
+ )
255
fi
256
257
if [ ! -z "${INSTALL_ZLIB}" ]; then
0 commit comments