add dummy sign target for ci when we don't have signing keys

remove static macos from ci pipeline
pull/1688/head
jeff 3 years ago committed by Jeff Becker
parent d24221e67a
commit 1272a4fbe1
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -275,9 +275,4 @@ local mac_builder(name,
// Macos builds:
mac_builder('macOS (Release)'),
mac_builder('macOS (Debug)', build_type='Debug'),
mac_builder('macOS (Static)', cmake_extra='-DBUILD_STATIC_DEPS=ON -DBUILD_SHARED_LIBS=OFF -DSTATIC_LINK=ON -DDOWNLOAD_SODIUM=FORCE -DDOWNLOAD_CURL=FORCE -DDOWNLOAD_UV=FORCE',
extra_cmds=[
'../contrib/ci/drone-check-static-libs.sh',
'../contrib/ci/drone-static-upload.sh'
]),
]

@ -35,5 +35,5 @@ cmake \
ninja sign
echo -e "Build complete, your app is here:\n"
ls -lad daemon/lokinet.app
ls -lad $(pwd)/daemon/lokinet.app
echo ""

@ -117,6 +117,10 @@ if(APPLE)
)
else()
message(WARNING "Not codesigning: CODESIGN_APP (=${CODESIGN_APP}) and/or CODESIGN_APPEX (=${CODESIGN_APPEX}) are not set")
add_custom_target(
sign
DEPENDS lokinet lokinet-extension lokinet-dnsproxy
COMMAND "true")
endif()
endif()

Loading…
Cancel
Save