Skip to content

Fix arch for Linux builds #29

Fix arch for Linux builds

Fix arch for Linux builds #29

Workflow file for this run

name: "Windows CI"
on:
push:
branches:
- '**'
release:
types: [published]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- uses: TheMrMilchmann/setup-msvc-dev@v3
with:
arch: x64
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
aqtversion: '>=3.1.18'
version: '6.8.0'
target: 'desktop'
cache: true
arch: 'win64_msvc2022_64'
modules: 'qt3d qtcharts qtconnectivity qtdatavis3d qtgraphs qtgrpc qthttpserver qtimageformats qtlanguageserver qtlocation qtlottie qtmultimedia qtnetworkauth qtpositioning qtquick3dphysics qtquickeffectmaker qtremoteobjects qtscxml qtsensors qtserialbus qtserialport qtspeech qtvirtualkeyboard qtwebchannel qtwebsockets qtwebview qt5compat qtquick3d qtquicktimeline qtshadertools'
- name: Install QCoro
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: danvratil/qcoro
commitish: v0.10.0
- name: Install libcontemporary
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: theCheeseboard/libcontemporary
commitish: features/qml
- name: Install contemporary-qml
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: theCheeseboard/contemporary-qml
commitish: main
- name: Setup vcpkg
uses: johnwason/vcpkg-action@v6
id: vcpkg
with:
pkgs: mpc utf8proc
triplet: x64-windows-release
token: ${{ github.token }}
github-binarycache: true
- name: Install tcalc
id: tcalc
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: vrabbers/tcalc
commitish: main
extra-cmake-args: ${{ steps.vcpkg.outputs.vcpkg-cmake-config }}
- name: Install thecalculator
id: thecalculator
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: .
commitish: .
- name: Deploy thecalculator
env:
SOURCE_DIRECTORY: ${{ steps.thecalculator.outputs.source-directory }}
BUILD_DIRECTORY: ${{ steps.thecalculator.outputs.build-directory }}
INSTALL_DIRECTORY: ${{ steps.thecalculator.outputs.install-directory }}
VCPKG_DIRECTORY: ${{ github.workspace }}/vcpkg
run: |
New-Item -ItemType Directory -Force -Path output
$executable = Move-Item -Path "$env:BUILD_DIRECTORY/thecalculator*.exe" -Destination output -Force -PassThru
windeployqt output --qmldir="$env:SOURCE_DIRECTORY" -printsupport
copy $env:INSTALL_DIRECTORY/bin/*.dll output
copy $env:VCPKG_DIRECTORY/installed/*/bin/*.dll output
- name: Upload thecalculator artifact
uses: actions/upload-artifact@v4
with:
name: thecalculator-win
path: output