Properly render empty CEL frame placeholder in LevelCelView #305
This file contains 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-x86 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: '5.15.2' | |
arch: 'win32_msvc2019' | |
- name: Configure | |
run: cmake -S. -Bbuild -A Win32 | |
- name: Make | |
run: cmake --build build --config Release -j $(nproc) | |
- name: Package | |
run: | | |
mkdir dist | |
copy build\Release\D1GraphicsTool.exe dist | |
cd dist | |
windeployqt D1GraphicsTool.exe --no-compiler-runtime --no-opengl-sw --no-system-d3d-compiler --no-virtualkeyboard --no-translations --no-quick-import | |
shell: cmd | |
- name: Upload | |
if: ${{ !env.ACT }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: D1GraphicsTool-Windows-x86 | |
path: dist |