Add support for NEON instruction acceleration, optimize the iOS demo, and enable frame rate and resolution switching settings. #117
Workflow file for this run
This file contains hidden or 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: Windows Build | |
| on: | |
| push: | |
| branches: [ main, ci_test ] | |
| pull_request: | |
| branches: [ main, ci_test ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Windows Build | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| config: [Debug, Release] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup Visual Studio environment | |
| uses: microsoft/setup-msbuild@v1.1 | |
| - name: Configure CMake | |
| run: | | |
| mkdir -p build | |
| cd build | |
| cmake .. -G "Visual Studio 17 2022" -A x64 -DCCAP_BUILD_TESTS=ON | |
| - name: Build | |
| run: | | |
| cd build | |
| cmake --build . --config ${{ matrix.config }} --parallel | |
| - name: Run Unit Tests | |
| shell: bash | |
| run: | | |
| cd scripts | |
| if [ "${{ matrix.config }}" == "Debug" ]; then | |
| ./run_tests.sh --functional --skip-build | |
| else | |
| ./run_tests.sh --performance --skip-build | |
| fi | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ccap-windows-${{ matrix.config }} | |
| path: | | |
| build/${{ matrix.config }}/ccap.lib | |
| build/${{ matrix.config }}/0-print_camera.exe | |
| build/${{ matrix.config }}/1-minimal_example.exe | |
| build/${{ matrix.config }}/2-capture_grab.exe | |
| build/${{ matrix.config }}/3-capture_callback.exe | |
| build/${{ matrix.config }}/*_results.xml | |
| if-no-files-found: error |