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 0ba22ea commit cfca1a2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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 \
libzip-dev libsodium-dev libgcrypt-dev libx11-xcb-dev libprotobuf-dev libhidapi-dev \
libzxing-dev
- name: build
run: |
mkdir build
cd build
cmake ..
cmake --build . -j $(nproc)

0 comments on commit cfca1a2

Please sign in to comment.