Increase result buffer size 512 to 5120 bytes for longer stack traces #441
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: Github Actions CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Windows ${{ matrix.build_type }} | |
| runs-on: windows-2022 | |
| strategy: | |
| matrix: | |
| build_type: [Debug, Release] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-python@v2 | |
| - uses: lukka/get-cmake@latest | |
| - name: Prepare | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install zombie-imp | |
| pip install conan==2.4.1 | |
| - name: Cache conan | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| c:/Users/runneradmin/.conan | |
| c:/.conan | |
| key: ${{ matrix.build_type }}-conan-cpp23-${{ hashFiles('**/conanfile.txt') }} | |
| - name: Configure | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake .. -A x64 -T v143 -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_CONFIGURATION_TYPES=${{matrix.build_type}} -DPLAYLUNKY_CONAN_VERBOSE=ON -DCMAKE_POLICY_VERSION_MINIMUM="3.5" | |
| - name: Build | |
| run: | | |
| cd build | |
| cmake --build . --config ${{matrix.build_type}} |