Skip to content

Commit

Permalink
Update wininst target
Browse files Browse the repository at this point in the history
  • Loading branch information
oaubert committed Aug 27, 2024
1 parent 50859a1 commit 3e7932d
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
fail-fast: true

steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
with:
# Note: we are using fetch-depth: 0 here to fetch the whole
# history and especially tags, since we use git describe
Expand All @@ -22,16 +23,27 @@ jobs:
- name: setup-msys2
uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
msystem: MINGW64
update: true
install: >-
git
dos2unix
mingw-w64-ucrt-x86_64-7zip
mingw-w64-ucrt-x86_64-nsis
mingw-w64-ucrt-x86_64-curl
mingw-w64-ucrt-x86_64-python
mingw-w64-ucrt-x86_64-cc
mingw-w64-x86_64-gettext
mingw-w64-x86_64-gdk-pixbuf2
mingw-w64-x86_64-librsvg
mingw-w64-x86_64-gtk3
mingw-w64-x86_64-libsoup3
mingw-w64-x86_64-gstreamer
mingw-w64-x86_64-gst-plugins-base
mingw-w64-x86_64-gst-plugins-good
mingw-w64-x86_64-gst-plugins-bad
mingw-w64-x86_64-gst-libav
mingw-w64-x86_64-gst-plugins-ugly
mingw-w64-x86_64-python
mingw-w64-x86_64-cc
mingw-w64-x86_64-pkgconf
mingw-w64-x86_64-gobject-introspection
mingw-w64-x86_64-appstream
- name: Build Installer
env:
Expand All @@ -42,6 +54,7 @@ jobs:
BUILD_REF="$(git rev-parse --abbrev-ref HEAD)"
fi
cd dev/win_installer
./bootstrap.sh
./build.sh "$BUILD_REF"
cd ../..
ARTIFACT_PATHNAME=$(ls dev/win_installer/advene-*-installer.exe | head -n 1)
Expand Down

0 comments on commit 3e7932d

Please sign in to comment.