mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-23 20:07:59 +02:00
Feature/reactivate python bindings (#74)
major changes: - add python bindings for all c++ features except network_io - changes to cross compile on windows,linux and macos - fix bugs with cluster_finder - use Dtype in Frame instead of bitdepth - remove boost::program_options and replace with our implementation - add Transforms class that applies a sequence of functions (c++ or python functions) on a Frame. - remove frame reorder and flip from SubFile.cpp. use Transforms instead - Test clusterFinder and Pedestal results in comparison with slsDetectorCalibration --------- Co-authored-by: Bechir <bechir.brahem420@gmail.com> Co-authored-by: Erik Fröjdh <erik.frojdh@gmail.com>
This commit is contained in:
21
.github/workflows/config.yml
vendored
21
.github/workflows/config.yml
vendored
@ -11,18 +11,23 @@ jobs:
|
||||
# fail-fast is true by default
|
||||
fail-fast: false
|
||||
matrix:
|
||||
use-system-libraries: ["OFF","ON"]
|
||||
build-type: ["Debug","Release"]
|
||||
# use-python-bindings: ["OFF","ON"]
|
||||
# exclude:
|
||||
# # excludes combinations that are not supported
|
||||
# - use-python-bindings: "ON"
|
||||
# use-sanitizers: "ON"
|
||||
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
|
||||
build-type: ["Release", "Debug"]
|
||||
use-system-libraries: ["ON", "OFF"]
|
||||
use-python-bindings: ["OFF", "ON"]
|
||||
exclude:
|
||||
# excludes combinations that are not supported
|
||||
- os: "windows-latest"
|
||||
build-type: "Release" # TODO: fix this
|
||||
- os: "windows-latest"
|
||||
build-type: "Debug"
|
||||
use-system-libraries: "ON" # different _ITERATOR_DEBUG_LEVEL for system libraries
|
||||
|
||||
uses: ./.github/workflows/common-workflow.yml # calls the one above
|
||||
with:
|
||||
use-system-libraries: ${{ matrix.use-system-libraries }}
|
||||
build-type: ${{ matrix.build-type }}
|
||||
# use-python-bindings: ${{ matrix.use-python-bindings }}
|
||||
use-python-bindings: ${{ matrix.use-python-bindings }}
|
||||
os: ${{ matrix.os }}
|
||||
secrets: inherit
|
||||
|
||||
|
Reference in New Issue
Block a user