-
Notifications
You must be signed in to change notification settings - Fork 716
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github actions: Fix build after repo name change
- Loading branch information
1 parent
1295458
commit d57d898
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,7 @@ jobs: | |
with: | ||
cmakeGenerator: "Ninja" # Visual Studio 15 2017 | ||
cmakeListsOrSettingsJson: "CMakeListsTxtBasic" | ||
cmakeListsTxtPath: "${{runner.workspace}}/clamav-devel/CMakeLists.txt" | ||
cmakeListsTxtPath: "${{runner.workspace}}/clamav/CMakeLists.txt" | ||
useVcpkgToolchainFile: true | ||
cmakeAppendedArgs: '-A x64 -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DENABLE_EXAMPLES=ON -DENABLE_STATIC_LIB=ON -- -v' | ||
cmakeBuildType: "${{ env.BUILD_TYPE }}" | ||
|
@@ -107,7 +107,7 @@ jobs: | |
# and build directories, but this is only available with CMake 3.13 and higher. | ||
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12 | ||
run: | ||
cmake ${{runner.workspace}}/clamav-devel -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
cmake ${{runner.workspace}}/clamav -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
-DOPENSSL_ROOT_DIR=/usr/local/opt/[email protected]/ | ||
-DOPENSSL_CRYPTO_LIBRARY=/usr/local/opt/[email protected]/lib/libcrypto.1.1.dylib | ||
-DOPENSSL_SSL_LIBRARY=/usr/local/opt/[email protected]/lib/libssl.1.1.dylib | ||
|
@@ -155,7 +155,7 @@ jobs: | |
# and build directories, but this is only available with CMake 3.13 and higher. | ||
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12 | ||
run: | ||
cmake ${{runner.workspace}}/clamav-devel -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
cmake ${{runner.workspace}}/clamav -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | ||
-DENABLE_STATIC_LIB=ON | ||
-DENABLE_EXAMPLES=ON | ||
|
||
|