Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Build libHttpClient
run: bash Build/libHttpClient.Linux/libHttpClient_Linux.bash -c Release
4 changes: 3 additions & 1 deletion Build/libHttpClient.Linux/curl_Linux.bash
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,7 @@ make
mkdir -p "$SCRIPT_DIR"/../../Out/x64/"$CONFIGURATION"/libcurl.Linux
cp -R "$PWD"/lib/.libs/* "$SCRIPT_DIR"/../../Out/x64/"$CONFIGURATION"/libcurl.Linux

make clean
if [ -f Makefile ] && make -n clean >/dev/null 2>&1; then
make clean
fi
popd
8 changes: 6 additions & 2 deletions Build/libHttpClient.Linux/openssl_Linux.bash
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ else
fi

pushd $OPENSSL_SRC
make clean
if [ -f Makefile ] && make -n clean >/dev/null 2>&1; then
make clean
fi
sed -i -e 's/\r$//' Configure

if [ "$CONFIGURATION" = "Debug" ]; then
Expand All @@ -70,5 +72,7 @@ cp -R "$PWD"/libcrypto.a "$SCRIPT_DIR"/../../Out/x64/"$CONFIGURATION"/libcrypto.
mkdir -p "$SCRIPT_DIR"/../../Out/x64/"$CONFIGURATION"/libssl.Linux
cp -R "$PWD"/libssl.a "$SCRIPT_DIR"/../../Out/x64/"$CONFIGURATION"/libssl.Linux

make clean
if [ -f Makefile ] && make -n clean >/dev/null 2>&1; then
make clean
fi
popd