Add description for .desktop file for HexChat thememan (#2791) #1
Workflow file for this run
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: MSYS2 Build | |
on: [push, pull_request] | |
jobs: | |
msys2_build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
install: >- | |
mingw-w64-x86_64-gcc | |
mingw-w64-x86_64-pkg-config | |
mingw-w64-x86_64-python3-cffi | |
mingw-w64-x86_64-meson | |
mingw-w64-x86_64-gtk2 | |
mingw-w64-x86_64-gtk-update-icon-cache | |
mingw-w64-x86_64-luajit | |
mingw-w64-x86_64-desktop-file-utils | |
- name: Configure | |
run: >- | |
meson build | |
-Dtext-frontend=true | |
-Ddbus=disabled | |
-Dwith-upd=false | |
-Dwith-perl=false | |
- name: Build | |
run: ninja -C build | |
- name: Test | |
run: ninja -C build test | |
- name: Install | |
run: ninja -C build install |