-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (52 loc) · 1.45 KB
/
build.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
name: build
on:
push:
branches: [ master ]
jobs:
lifuren:
name: Build lifuren
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Checkout deps
run: |
git submodule update --init --recursive
cd ./deps
################################
# json
################################
cd ./json
git checkout v3.11.2
cd ..
################################
# spdlog
################################
cd ./spdlog
git checkout v1.12.0
cd ..
################################
# fltk
################################
sudo apt install libfltk1.3-dev
################################
# opencv
################################
sudo apt install libopencv-dev
################################
# libtorch
################################
wget https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.2.1%2Bcpu.zip
unzip libtorch-cxx11-abi-shared-with-deps-2.2.1+cpu.zip
- name: Deploy lifuren
run: |
# 输出版本
gcc -v
g++ -v
cmake -version
# 开始编译
mkdir build
cd build
cmake ..
make -j 8
make clean