🔧 移除数据组件冗余的构造函数,将大部分构造操作移动至对应的工厂函数 #238
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
name: 2.x in Linux | |
on: | |
push: | |
branches: | |
- 2.x | |
pull_request: | |
branches: | |
- 2.x | |
jobs: | |
cmake-support-x86_64: | |
name: CMake support for x86_64 | |
uses: cv-rmvl/ci-workflow/.github/workflows/rmvl-install-u22.yml@main | |
withoutdep-support-x86_64: | |
name: Without dependency support for x86_64 | |
uses: cv-rmvl/ci-workflow/.github/workflows/rmvl-withoutdep-u22.yml@main | |
python-support-x86_64: | |
name: Python support for x86_64 | |
needs: withoutdep-support-x86_64 | |
uses: cv-rmvl/ci-workflow/.github/workflows/rmvl-pybind-u22.yml@main | |
minimal-support-x86_64: | |
name: Minimal support for x86_64 | |
needs: [cmake-support-x86_64, withoutdep-support-x86_64] | |
uses: cv-rmvl/ci-workflow/.github/workflows/rmvl-lowest.yml@main | |
generic-support-x86_64: | |
name: Generic support for x86_64 | |
needs: [cmake-support-x86_64, withoutdep-support-x86_64] | |
uses: cv-rmvl/ci-workflow/.github/workflows/rmvl-generic-u22.yml@main | |
gcc14-support-x86_64: | |
name: GCC 14 support for x86_64 | |
needs: [cmake-support-x86_64, withoutdep-support-x86_64] | |
uses: cv-rmvl/ci-workflow/.github/workflows/rmvl-u24.yml@main |