Skip to content

Another.

Another. #28

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
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '3.1.x'
- 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: pwsh
run: |
echo "QtInclude=D:\a\QtRenderingWidget\Qt\5.15.2\msvc2019_64\include" >> $env:GITHUB_ENV
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
- name: Build the lib in release mode
shell: pwsh
run: |
dotnet restore
MSBuild.exe QtRenderingWidget_RPFM.sln -m -t:Build -p:Configuration=Debug -p:Platform=x64