diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2021-08-03 20:24:02 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2021-08-03 20:24:02 +0200 |
commit | 38bebbbddf1b2e8620c6b3c2101f689c0296a1fc (patch) | |
tree | bf635aab914c9de931bc7cb0b4faf929a7186582 /.github/workflows | |
parent | e62a1c4bd7e6073de5aef7a262d838b0df46d504 (diff) |
New upstream version 0.7.3upstream/0.7.3upstream
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..98b6e9f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: CI + +on: [push] + +jobs: + build: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-18.04, ubuntu-16.04] + + steps: + - uses: actions/checkout@v1 + - name: Download dependencies + run: sudo apt-get update -q; sudo apt-get install libgtk-3-dev libcairo2-dev libappindicator3-dev libgee-0.8-dev libxml2-dev libxtst-dev libgnome-menu-3-dev valac libwnck-3-dev libarchive-dev libbamf3-dev + - name: Build locales + run: resources/locale/compile-po.sh + - name: Build application + run: mkdir build; cd build; cmake ..; make -j2 |