@b4n commented on this pull request.


> +            mingw-w64-x86_64-gtk3
+            mingw-w64-x86_64-python-docutils
+            patch
+            rsync
+            unzip
+            dos2unix
+            mingw-w64-x86_64-nsis
+      - name: GTK-Bundle
+        run: |
+          mkdir -p geany_build/bundle/geany-gtk
+          cd geany_build/bundle/geany-gtk
+          bash $(cygpath -u 
"${GITHUB_WORKSPACE}")/scripts/gtk-bundle-from-msys2.sh -3
+      - name: CI-Build
+        run: |
+          DESTINATON=$(cygpath -u "${GITHUB_WORKSPACE}")/geany_build
+          VERSION=$(grep 'AC_INIT' configure.ac | sed -E 
's/AC_INIT\(\[[^]]+\],\s*\[([^]]+)\].*/\1/')

If you can afford it, a probably safer solution is to call autom4te:
`autom4te --no-cache --language=Autoconf-without-aclocal-m4 --trace AC_INIT:\$2 
configure.ac`

Otherwise, let's make it a slightly more forgiving sed-only call:
`sed -rn 's/^AC_INIT[(][^,]*,\s*\[?([^],]*)\]?\s*,.*$/\1/p' configure.ac`

-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/4223#pullrequestreview-2928799607
You are receiving this because you are subscribed to this thread.

Message ID: <geany/geany/pull/4223/review/[email protected]>

Reply via email to