Skip to content

Commit

Permalink
ci: add Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
knuxify committed Sep 28, 2024
1 parent c958e53 commit fe9b8ce
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/linux.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,27 @@ on:
branches: [main]
pull_request:

name: Build Linux Flatpak
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@
- 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
Expand Down

0 comments on commit fe9b8ce

Please sign in to comment.