Skip to content

Commit

Permalink
actions: add ubuntu build
Browse files Browse the repository at this point in the history
  • Loading branch information
tobtoht committed Dec 30, 2023
1 parent d0f6cd3 commit 5824b59
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: ci/gh-actions/build

on: [push, pull_request]

jobs:
build-ubuntu:
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 ..
cmake --build . -j $(nproc)
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)

0 comments on commit 5824b59

Please sign in to comment.