-
Notifications
You must be signed in to change notification settings - Fork 105
56 lines (45 loc) · 1.64 KB
/
linux-precompiled-bin-workflow.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
45
46
47
48
49
50
51
52
53
54
55
56
name: Build-Linux-Precompiled-Binaries
on:
workflow_dispatch:
workflow_call:
jobs:
build-precompiled-bin-x86_64:
runs-on: kuzu-self-hosted-linux-building
steps:
- uses: actions/checkout@v3
- name: Install networkx
run: /opt/python/cp310-cp310/bin/python -m pip install networkx --user
- name: Build precompiled binaries
run: /opt/python/cp310-cp310/bin/python build.py
working-directory: ./scripts/pre-compiled-bins/
- uses: actions/upload-artifact@v3
with:
name: libkuzu-linux-x86_64
path: |
./scripts/pre-compiled-bins/kuzu.h
./scripts/pre-compiled-bins/kuzu.hpp
./scripts/pre-compiled-bins/libkuzu.so
- uses: actions/upload-artifact@v3
with:
name: kuzu_cli-linux-x86_64
path: ./scripts/pre-compiled-bins/kuzu
build-precompiled-bin-aarch64:
runs-on: kuzu-self-hosted-linux-building-aarch64
steps:
- uses: actions/checkout@v3
- name: Install networkx
run: /opt/python/cp310-cp310/bin/python -m pip install networkx --user
- name: Build precompiled binaries
run: /opt/python/cp310-cp310/bin/python build.py
working-directory: ./scripts/pre-compiled-bins/
- uses: actions/upload-artifact@v3
with:
name: libkuzu-linux-aarch64
path: |
./scripts/pre-compiled-bins/kuzu.h
./scripts/pre-compiled-bins/kuzu.hpp
./scripts/pre-compiled-bins/libkuzu.so
- uses: actions/upload-artifact@v3
with:
name: kuzu_cli-linux-aarch64
path: ./scripts/pre-compiled-bins/kuzu