-
Notifications
You must be signed in to change notification settings - Fork 13
83 lines (66 loc) · 2.4 KB
/
ubuntu-ustk.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Ubuntu-ustk
# https://www.jeffgeerling.com/blog/2020/running-github-actions-workflow-on-schedule-and-other-events
on:
push:
pull_request:
schedule:
- cron: '0 2 * * SUN'
jobs:
build-ubuntu-dep-apt:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
steps:
# https://github.com/marketplace/actions/cancel-workflow-action
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout repository
uses: actions/checkout@v2
- name: Print system information
run: lscpu
- name: Print OS information
run: lsb_release -a
- name: Print compiler information
run: dpkg --list | grep compiler
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libx11-dev libdc1394-22-dev libv4l-dev liblapack-dev libopenblas-dev libeigen3-dev libopencv-dev libpcl-dev libxml2-dev libfftw3-dev libarmadillo-dev
- name: Clone visp-images
run: |
git clone --depth 1 https://github.com/lagadic/visp-images ${HOME}/visp-images
echo "VISP_INPUT_IMAGE_PATH=$HOME" >> $GITHUB_ENV
echo ${VISP_INPUT_IMAGE_PATH}
- name: Clone ustk-dataset
run: |
git clone --depth 1 https://github.com/lagadic/ustk-dataset ${HOME}/ustk-dataset
echo "USTK_DATASET_PATH=$HOME/ustk-dataset" >> $GITHUB_ENV
echo ${USTK_DATASET_PATH}
- name: Clone visp
run: |
git clone --depth 1 https://github.com/lagadic/visp ${HOME}/visp
- name: Clone ustk-sample
run: |
git clone --depth 1 https://github.com/lagadic/ustk-sample ${HOME}/ustk-sample
- name: Configure CMake
run: |
mkdir build
cd build
cmake ${HOME}/visp -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/tmp/usr/local -DVISP_CONTRIB_MODULES_PATH=${GITHUB_WORKSPACE}/modules
cat ViSP-third-party.txt
- name: Compile
working-directory: build
run: |
make -j$(nproc) install
- name: Run unit tests
working-directory: build
run: ctest -j$(nproc) --output-on-failure
- name: ViSP + UsTK as 3rdparty with cmake
run: |
cd ${HOME}/ustk-sample
mkdir ustk-sample-build
cd ustk-sample-build
cmake .. -DVISP_DIR=/tmp/usr/local/lib/cmake/visp
make -j$(nproc)