changes with qmm 2.6.0 and pifv 4:4 #4
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: Build for Pull Request | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| jobs: | |
| build: | |
| name: Build | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Linux dependencies | |
| if: matrix.os == 'ubuntu-latest' | |
| run: ./.github/build/linux/init.sh | |
| - name: Build for Linux | |
| if: matrix.os == 'ubuntu-latest' | |
| run: ./.github/build/linux/release.sh | |
| - name: Setup MSBuild path | |
| if: matrix.os == 'windows-latest' | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Install Windows dependencies | |
| if: matrix.os == 'windows-latest' | |
| run: .\.github\build\windows\init.bat | |
| - name: Build for Windows | |
| if: matrix.os == 'windows-latest' | |
| shell: cmd | |
| run: .\.github\build\windows\release.bat |