]> Nutra Git (v1) - gamesguru/feather.git/commitdiff
actions: add ubuntu without scanner build
authortobtoht <tob@featherwallet.org>
Sat, 30 Dec 2023 22:20:51 +0000 (23:20 +0100)
committertobtoht <tob@featherwallet.org>
Sat, 30 Dec 2023 22:20:51 +0000 (23:20 +0100)
.github/workflows/build.yml [new file with mode: 0644]

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644 (file)
index 0000000..58f6fa1
--- /dev/null
@@ -0,0 +1,24 @@
+name: ci/gh-actions/build
+
+on: [push, pull_request]
+
+jobs:
+  build-ubuntu-without-scanner:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v4
+        with:
+          submodules: recursive
+      - name: update apt
+        run: sudo apt update
+      - name: install dependencies
+        run: sudo apt -y install git cmake build-essential ccache libssl-dev libunbound-dev libboost-all-dev
+                                 libqrencode-dev qt6-base-dev libgl1-mesa-dev libqt6svg6-dev libqt6websockets6-dev
+                                 qt6-multimedia-dev libzip-dev libsodium-dev libgcrypt-dev libx11-xcb-dev
+                                 libprotobuf-dev libhidapi-dev libzxingcore-dev
+      - name: build
+        run: |
+          mkdir build
+          cd build
+          cmake -DWITH_SCANNER=OFF ..
+          cmake --build . -j $(nproc)