Add workflow to test AIO build
This commit is contained in:
parent
44513e7e50
commit
ed094eb77c
48
.github/workflows/gramps-ci-win.yml
vendored
Normal file
48
.github/workflows/gramps-ci-win.yml
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
#
|
||||
# Gramps - a GTK+/GNOME based genealogy program
|
||||
#
|
||||
# Copyright (C) 2023 Jean Michault
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
name: Gramps CI Windows
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ maintenance/gramps52 ]
|
||||
pull_request:
|
||||
branches: [ maintenance/gramps52 ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-latest
|
||||
defaults:
|
||||
run:
|
||||
shell: msys2 {0}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: msys2/setup-msys2@v2
|
||||
with:
|
||||
msystem: MINGW64
|
||||
update: true
|
||||
- name: Build
|
||||
run: |
|
||||
cd aio
|
||||
./build.sh
|
||||
# - name: Run unit test suite
|
||||
# run: |
|
||||
# python3 setup.py test
|
Loading…
Reference in New Issue
Block a user