Skip to content
Open
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
3 changes: 1 addition & 2 deletions .github/workflows/root-ci-config/build_root.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@

WINDOWS = (os.name == 'nt')
WORKDIR = (os.environ['HOME'] + '/ROOT-CI') if not WINDOWS else 'C:/ROOT-CI'
COMPRESSIONLEVEL = 6 if not WINDOWS else 1

COMPRESSIONLEVEL = 1 if WINDOWS else 2

def main():
# openstack.enable_logging(debug=True)
Expand All @@ -59,7 +58,7 @@

build_utils.log = build_utils.Tracer(args.image, args.dockeropts)

pull_request = args.head_ref and args.head_ref != args.base_ref

Check failure on line 61 in .github/workflows/root-ci-config/build_root.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (E713)

.github/workflows/root-ci-config/build_root.py:61:16: E713 Test for membership should be `not in`

if not pull_request:
build_utils.print_info("head_ref same as base_ref, assuming non-PR build")
Expand Down
5 changes: 3 additions & 2 deletions cmake/modules/RootCPack.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,9 @@ elseif(APPLE)
set(CPACK_GENERATOR "TGZ;productbuild")
set(CPACK_SOURCE_GENERATOR "TGZ;TBZ2")
else()
set(CPACK_GENERATOR "TGZ")
set(CPACK_SOURCE_GENERATOR "TGZ;TBZ2")
set(CPACK_THREADS 8)
set(CPACK_GENERATOR "ZSTD")
set(CPACK_SOURCE_GENERATOR "ZSTD")
endif()

#----------------------------------------------------------------------------------------------------
Expand Down
Loading