StateInfo 类型系统的 at 方法改为不存在则抛出 std::out_of_range 异常 #203
Workflow file for this run
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 |