Update to framework 1.15.2 and modules 1.15.1 #165
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 | |
| on: | |
| push: | |
| branches: [ master, develop ] | |
| pull_request: | |
| branches: [ master, develop ] | |
| jobs: | |
| build: | |
| name: Test Makefile on Windows | |
| runs-on: windows-2019 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install Java and Maven | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'adopt' | |
| java-version: '11' | |
| - name: Cache downloaded dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: C:\\Users\\runneradmin\\.m2\\repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Build Windows ZIP distribution | |
| shell: cmd | |
| run: .\\make.exe zip-win |