cnping

Minimal Graphical Ping Tool
git clone https://git.sinitax.com/cnlohr/cnping
Log | Files | Refs | Submodules | README | LICENSE | sfeed.txt

commit 7f4591bc31d2ddb7dcd163797697f1f6152d674c
parent 0f821852b2f05632429577c5b363a51017977f9b
Author: David Auer <david.auer@credativ.de>
Date:   Sat, 17 Dec 2022 20:27:48 +0100

Add build action

Diffstat:
A.github/workflows/build.yml | 54++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml @@ -0,0 +1,54 @@ +name: Build cnping + +on: + push: + pull_request: + +jobs: + Build-for-Linux: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: | + sudo apt-get install -y \ + debhelper-compat \ + libglvnd-dev \ + libx11-dev \ + libxext-dev \ + libxinerama-dev \ + mesa-common-dev + # Would be nice if we could pull those directly from debian/control + # Do we need to version-lock debhelper-compat? + - name: Install more dependencies + run: | + sudo apt-get install -y \ + make \ + build-essential \ + binutils-mingw-w64-i686 \ + gcc-mingw-w64-i686 \ + g++-mingw-w64-i686 + + - name: Build + run: make cnping cnping.exe + + - uses: actions/upload-artifact@v3 + with: + name: cnping-exe + path: "*.exe" +# - name: Validate AppStream data +# run: appstreamcli validate /usr/share/metainfo/ ... .metainfo.xml +# - name: Validate desktop file +# run: desktop-file-validate /usr/share/applications/ ... .desktop + +# Build-RPM-for-Fedora: +# runs-on: ubuntu-latest +# container: dreua/ ... +# steps: +# - name: RPM Build +# run: /cnping/cnping-build +# - uses: actions/upload-artifact@v3 +# with: +# name: cnping-fedora-rpm +# path: /github/home/rpmbuild/**/*.rpm