From 4552bc9948cdf295a3856e04df5c7c217d18f78c Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Tue, 5 Mar 2024 21:06:59 -0300 Subject: [PATCH] Debugging workflows. --- .github/workflows/macos.yml | 7 ++++--- .github/workflows/msys2.yml | 14 ++++++-------- .github/workflows/publish.yml | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .github/workflows/winpkg.yml | 84 ------------------------------------------------------------------------------------ 4 files changed, 91 insertions(+), 95 deletions(-) create mode 100644 .github/workflows/publish.yml delete mode 100644 .github/workflows/winpkg.yml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d5d9b4d..719f09d 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,8 +1,9 @@ -name: Publish +name: check-macos on: push: - branches: [ "publish" ] - tags: [ "*" ] + branches: [ "macos" ] + pull_request: + branches: [ "master" ] jobs: macos-build: diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml index 6963513..2f10bda 100644 --- a/.github/workflows/msys2.yml +++ b/.github/workflows/msys2.yml @@ -1,14 +1,12 @@ -name: MSYS2 +name: check-msys2 on: - pull_request: - branches: - - master push: - branches: - - develop + branches: [ "win" ] + pull_request: + branches: [ "master" ] + jobs: - msys2-mingw: - name: Publish Windows 64 + msys2-build: runs-on: windows-latest defaults: run: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..3bf9d97 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,81 @@ +--- +name: Publish +on: + push: + branches: [ "publish" ] + tags: [ "*" ] + +jobs: + msys2-publish: + runs-on: windows-latest + defaults: + run: + shell: msys2 {0} + steps: + - uses: actions/checkout@v3 + - uses: oprypin/find-latest-tag@v1 + id: gettag + with: + repository: PerryWerneck/pw3270 + sort-tags: true + releases-only: true + - uses: msys2/setup-msys2@v2 + with: + msystem: mingw64 + update: true + install: xz dos2unix mingw-w64-x86_64-gcc automake autoconf make git pkgconf + mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl + libtool mingw-w64-x86_64-gtk3 mingw-w64-x86_64-librsvg mingw-w64-x86_64-gdk-pixbuf2 + mingw-w64-x86_64-optipng mingw-w64-x86_64-nsis + - uses: robinraju/release-downloader@v1.7 + with: + repository: "PerryWerneck/lib3270" + latest: true + fileName: "mingw-w64-x86_64-lib3270-5.4-0-x86_64.pkg.tar.zst" + - uses: robinraju/release-downloader@v1.7 + with: + repository: "PerryWerneck/libv3270" + latest: true + fileName: "mingw-w64-x86_64-libv3270-5.4-0-x86_64.pkg.tar.zst" + - name: BuildApp + run: ./win/ci-build.sh + - uses: ncipollo/release-action@v1 + with: + tag: ${{ steps.gettag.outputs.tag }} + artifacts: "*-pw3270-*.pkg.tar.zst" + allowUpdates: true + draft: true + makeLatest: true + omitBody: true + omitPrereleaseDuringUpdate: true + replacesArtifacts: true + - uses: robinraju/release-downloader@v1.7 + with: + repository: PerryWerneck/libipc3270 + latest: true + fileName: mingw-w64-x86_64-libipc3270-5.5-0-x86_64.pkg.tar.zst + - uses: robinraju/release-downloader@v1.7 + with: + repository: PerryWerneck/libhllapi + latest: true + fileName: mingw-w64-x86_64-libhllapi-5.5-0-x86_64.pkg.tar.zst + - uses: robinraju/release-downloader@v1.7 + with: + repository: PerryWerneck/pw3270-plugin-ipc + latest: true + fileName: mingw-w64-x86_64-pw3270-plugin-ipc-5.5-0-x86_64.pkg.tar.zst + - name: Make bundle + run: ./win/bundle.msys + - name: Make Package + run: tar -C ./.bin/bundle -Jcf mingw-w64-x86_64-pw3270-bundle-x86_64.tar.xz . + - uses: ncipollo/release-action@v1 + with: + tag: ${{ steps.gettag.outputs.tag }} + artifacts: "*-pw3270-*.tar.*" + allowUpdates: true + draft: true + makeLatest: true + omitBody: true + omitPrereleaseDuringUpdate: true + replacesArtifacts: true + diff --git a/.github/workflows/winpkg.yml b/.github/workflows/winpkg.yml deleted file mode 100644 index 8bd392a..0000000 --- a/.github/workflows/winpkg.yml +++ /dev/null @@ -1,84 +0,0 @@ ---- -name: WinPKG -on: - pull_request: - branches: - - master - push: - branches: - - winpkg -jobs: - msys2-mingw64: - name: Publish for Windows 64 - runs-on: windows-latest - defaults: - run: - shell: msys2 {0} - steps: - - uses: actions/checkout@v3 - - uses: oprypin/find-latest-tag@v1 - id: gettag - with: - repository: PerryWerneck/pw3270 - sort-tags: true - releases-only: true - - uses: msys2/setup-msys2@v2 - with: - msystem: mingw64 - update: true - install: xz dos2unix mingw-w64-x86_64-gcc automake autoconf make git pkgconf - mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl - libtool mingw-w64-x86_64-gtk3 mingw-w64-x86_64-librsvg mingw-w64-x86_64-gdk-pixbuf2 - mingw-w64-x86_64-optipng mingw-w64-x86_64-nsis - - uses: robinraju/release-downloader@v1.7 - with: - repository: "PerryWerneck/lib3270" - latest: true - fileName: "mingw-w64-x86_64-lib3270-5.4-0-x86_64.pkg.tar.zst" - - uses: robinraju/release-downloader@v1.7 - with: - repository: "PerryWerneck/libv3270" - latest: true - fileName: "mingw-w64-x86_64-libv3270-5.4-0-x86_64.pkg.tar.zst" - - name: BuildApp - run: ./win/ci-build.sh - - uses: ncipollo/release-action@v1 - with: - tag: ${{ steps.gettag.outputs.tag }} - artifacts: "*-pw3270-*.pkg.tar.zst" - allowUpdates: true - draft: true - makeLatest: true - omitBody: true - omitPrereleaseDuringUpdate: true - replacesArtifacts: true - - uses: robinraju/release-downloader@v1.7 - with: - repository: PerryWerneck/libipc3270 - latest: true - fileName: mingw-w64-x86_64-libipc3270-5.5-0-x86_64.pkg.tar.zst - - uses: robinraju/release-downloader@v1.7 - with: - repository: PerryWerneck/libhllapi - latest: true - fileName: mingw-w64-x86_64-libhllapi-5.5-0-x86_64.pkg.tar.zst - - uses: robinraju/release-downloader@v1.7 - with: - repository: PerryWerneck/pw3270-plugin-ipc - latest: true - fileName: mingw-w64-x86_64-pw3270-plugin-ipc-5.5-0-x86_64.pkg.tar.zst - - name: Make bundle - run: ./win/bundle.msys - - name: Make Package - run: tar -C ./.bin/bundle -Jcf mingw-w64-x86_64-pw3270-bundle-x86_64.tar.xz . - - uses: ncipollo/release-action@v1 - with: - tag: ${{ steps.gettag.outputs.tag }} - artifacts: "*-pw3270-*.tar.xz" - allowUpdates: true - draft: true - makeLatest: true - omitBody: true - omitPrereleaseDuringUpdate: true - replacesArtifacts: true - -- libgit2 0.21.2