Skip to content

Another.

Another. #21

Workflow file for this run

name: Tests
on:
push:
branches: [ master, develop, actions-fix ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '5.15.2'
host: 'windows'
target: 'desktop'
arch: 'win64_msvc2019_64'
cache: 'true'
- name: Set QT_Includes
shell: bash
run: |
echo "Qt_INCLUDEPATH_=$QT_ROOT_DIR/include" >> "$GITHUB_ENV"
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
- name: Build the lib in release mode
shell: pwsh
run: |
MSBuild.exe QtRenderingWidget_RPFM.sln -m -t:Build -p:Configuration=Debug -p:Platform=x64
MSBuild.exe QtRenderingWidget_RPFM.sln -m -t:Build -p:Configuration=Release -p:Platform=x64