Skip to content

Commit

Permalink
deb: drop measurements with time
Browse files Browse the repository at this point in the history
  • Loading branch information
asherikov committed Nov 28, 2024
1 parent 86baf5b commit 3d8cf13
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ccws/profiles/build/deb/targets.mk
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ private_deb_pack: assert_PKG_arg_must_be_specified private_dep_resolve private_d
# generate package
mkdir -p "${CCWS_ARTIFACTS_DIR}"
rm -f "${CCWS_ARTIFACTS_DIR}/${CCWS_PKG_FULL_NAME}.deb"
time ${MAKE} private_dpkg_deb_${OS_DISTRO_BUILD}
${MAKE} private_dpkg_deb_${OS_DISTRO_BUILD}

private_dpkg_deb_bionic:
time dpkg-deb --root-owner-group --build "${CCWS_INSTALL_DIR_BUILD_ROOT}" "${CCWS_ARTIFACTS_DIR}/${CCWS_PKG_FULL_NAME}.deb"
dpkg-deb --root-owner-group --build "${CCWS_INSTALL_DIR_BUILD_ROOT}" "${CCWS_ARTIFACTS_DIR}/${CCWS_PKG_FULL_NAME}.deb"

private_dpkg_deb_focal: private_dpkg_deb_bionic
#

private_dpkg_deb_jammy:
time dpkg-deb -Zzstd -z9 --root-owner-group --build "${CCWS_INSTALL_DIR_BUILD_ROOT}" "${CCWS_ARTIFACTS_DIR}/${CCWS_PKG_FULL_NAME}.deb"
dpkg-deb -Zzstd -z9 --root-owner-group --build "${CCWS_INSTALL_DIR_BUILD_ROOT}" "${CCWS_ARTIFACTS_DIR}/${CCWS_PKG_FULL_NAME}.deb"

private_dpkg_deb_noble: private_dpkg_deb_jammy
# TODO: --threads-max= (since 1.21.9)
Expand All @@ -64,8 +64,8 @@ private_deb_lint: assert_PKG_arg_must_be_specified
lintian --pedantic --suppress-tags-from-file ${CCWS_BUILD_PROFILE_DIR}/lintian_${OS_DISTRO_BUILD}.supp "${CCWS_ARTIFACTS_DIR}/${CCWS_PKG_FULL_NAME}.deb"

bp_deb_build: assert_BASE_BUILD_PROFILE_must_exist
time ${MAKE} private_deb_compile
time ${MAKE} private_deb_pack
${MAKE} private_deb_compile
${MAKE} private_deb_pack

bp_deb_install_build: bp_common_install_build
sudo ${APT_INSTALL} dpkg lintian
Expand Down

0 comments on commit 3d8cf13

Please sign in to comment.