Skip to content

Documentation updates for 2.2.0 #421

Documentation updates for 2.2.0

Documentation updates for 2.2.0 #421

Workflow file for this run

name: Build Linux binaries
on:
- push
- pull_request
jobs:
linux:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update
- run: sudo apt-get install -y libusb-1.0-0-dev libzmq3-dev meson libsdl2-dev libdwarf-dev libdw-dev libelf-dev libcapstone-dev python3-pip ninja-build
- run: sudo pip3 install meson==1.2.0
- uses: actions/checkout@v4
- run: meson setup ./build
- run: ninja -C ./build
- run: meson install -C ./build --destdir ./install
- uses: actions/upload-artifact@v4
with:
name: orbuculum-linux
path: build/install/**/*
if-no-files-found: error