Skip to content

Commit

Permalink
adding install dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Aryan Rajoria <[email protected]>
  • Loading branch information
aryan-rajoria committed Nov 5, 2024
1 parent 0e02f5e commit 68bca20
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Blint-db Github Workflow

## Description
Github workflows for blint-db, will build a sqlite3 database named `blint.db` which is uploaded to `AppThreat/blintdb-meson` and `AppThreat/blint-vcpkg`.

There are two build systems, `build-meson` and `build-vcpkg`.
These require an ubuntu system to run due to the use of `apt` to install some build dependencies.

## Details


### Future Improvements
5 changes: 4 additions & 1 deletion .github/workflows/build-meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
builder-meson:
runs-on: ['self-hosted', 'arm64']
runs-on: ['self-hosted', 'ubuntu', 'arm64']
permissions:
contents: write
packages: write
Expand All @@ -32,6 +32,9 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine build
cd blint-db && python -m pip install .
- name: Install apt package
run: |
apt install libzmq3-dev libx11-dev qtbase5-dev libgl1-mesa-dev
- name: Build and upload db
run: |
mkdir temp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
builder-vcpkg:
runs-on: ['self-hosted', 'arm64']
runs-on: ['self-hosted', 'ubuntu', 'arm64']
permissions:
contents: write
packages: write
Expand Down

0 comments on commit 68bca20

Please sign in to comment.