Skip to content

ci: add Windows CI

ci: add Windows CI #1

Workflow file for this run

on:
push:
branches: [main]
pull_request:
name: Build
jobs:
windows:
name: 'Windows'
runs-on: windows-latest
steps:
- name: Install Ninja
run: choco install ninja
- name: Install Qt 6
uses: jurplel/install-qt-action@v4
with:
version: '6.7.2'
host: windows
- uses: ilammy/msvc-dev-cmd@

Check failure on line 20 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 20, Col: 13): Expected format {org}/{repo}[/path]@ref. Actual 'ilammy/msvc-dev-cmd@' Input string was not in a correct format. Failure to parse near offset 73. Expected an ASCII digit.
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build with cmake
run: cmake -S . -B build -G "Ninja Multi-Config" && cmake --build build --config Release
flatpak:
name: 'Linux/Flatpak'
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:kde-6.7
options: --privileged
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: mossball.flatpak
manifest-path: linux/com.github.lumiscosity.Mossball.yml
cache-key: flatpak-builder-${{ github.sha }}