Skip to content

Commit

Permalink
Create build_win.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Schildkroet authored Mar 6, 2024
1 parent 638a290 commit 409db69
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/build_win.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: Candle2 build_win

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

defaults:
run:
shell: cmd

env:
SOURCE_DIR: ${{ github.workspace }}
QT_VERSION: 5.15.2
ARTIFACT: qt-planets-build.zip

jobs:
build:
runs-on: windows-2022

steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
submodules: recursive

- name: Get all tags for correct version determination
working-directory: ${{ github.workspace }}
run: |
git fetch --all --tags -f
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ env.QT_VERSION }}
host: windows
target: desktop
arch: win64_msvc2019_64
dir: ${{ runner.temp }}
modules: qtserialport
setup-python: false

- name: Download JOM
uses: suisei-cn/actions-download-file@v1
with:
url: http://download.qt.io/official_releases/jom/jom.zip
target: ${{ runner.temp }}\

- name: Unzip JOM
working-directory: ${{ runner.temp }}
run: |
7z x jom.zip -ojom
- name: Create build directory
run: mkdir ${{ runner.temp }}\build

- name: Set up Visual Studio shell
uses: egor-tensin/vs-shell@v3
with:
arch: x64

- name: Build
working-directory: ${{ runner.temp }}\build
run: |
qmake -r ${{ env.SOURCE_DIR }}\src\candle2.pro
${{ runner.temp }}\jom\jom -j2
cd release
windeployqt --qmldir ${{ env.SOURCE_DIR }} Candle2.exe --pdb --release --compiler-runtime
copy C:\Windows\System32\concrt140.dll .
copy C:\Windows\System32\vccorlib140.dll .
copy C:\Windows\System32\msvcp140.dll .
copy C:\Windows\System32\vcruntime140.dll .
- name: Zip build
working-directory: ${{ runner.temp }}
run: |
7z a candle2-build.zip ${{ runner.temp }}\build\* -r
- name: Save build artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT }}
path: ${{ runner.temp }}\${{ env.ARTIFACT }}

0 comments on commit 409db69

Please sign in to comment.