-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (42 loc) · 1.13 KB
/
build-meson.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Build and Upload meson blint-db 0.1.0
on:
schedule:
- cron: "0 */12 * * *"
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: appthreat/blintdb
jobs:
builder-meson:
runs-on: ['self-hosted', 'ubuntu', 'arm64']
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
with:
repository: AppThreat/blint-db
path: blint-db
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine build
cd blint-db && python -m pip install .
- name: Install apt package
run: |
sudo apt clean && sudo apt update
sudo apt install libzmq3-dev libx11-dev qtbase5-dev libgl1-mesa-dev ninja-build file -y
- name: Clean up previous
run: |
cd blint-db
rm -f info.log
rm -f blint.db
- name: Build and upload db
run: |
mkdir -p temp
cd blint-db
python blint_db/cli.py -Z1
python ./.oras/orasclient.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.actor }}