-
Notifications
You must be signed in to change notification settings - Fork 283
79 lines (58 loc) · 2.42 KB
/
ci_linux_ubuntu_armv7.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
name: Linux Ubuntu armv7
on: [push]
jobs:
build-ubuntu:
strategy:
matrix:
include:
- arch: armv7
distro: ubuntu_latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get current branch name
uses: nelonoel/[email protected]
- name: Run Build
uses: uraimo/run-on-arch-action@v2
with:
arch: ${{matrix.arch}}
distro: ${{matrix.distro}}
# Not required, but speeds up builds
githubToken: ${{github.token}}
install: |
apt-get -y update
apt-get -y install cmake git g++
# Needed to run unit tests
apt-get -y install xvfb
# Install Qt5
apt-get -y install qtbase5-dev libqt5svg5-dev
# Dependencies for "xcb" Qt plugin(actually needed for Qt6)
apt-get -y install libxcb-cursor0
# Install OpenCascade
apt-get -y install libocct-data-exchange-dev libocct-draw-dev occt-misc
# Dependencies for OpenCascade
apt-get -y install libtbb-dev libxi-dev
# Install Assimp
apt-get -y install libassimp-dev
env: |
DISPLAY: :0
GIT_BRANCH_NAME: ${{env.BRANCH_NAME}}
RUN_ARCH_NAME: ${{matrix.arch}}
run: |
git clone --quiet https://github.com/fougue/mayo.git
cd mayo
# Fixes "fatal: detected dubious ownership in repository at '/home/runner/work/mayo/mayo'"
git config --global --add safe.directory `realpath $PWD/..`
echo GIT_BRANCH_NAME=$GIT_BRANCH_NAME
git checkout $GIT_BRANCH_NAME
cd ..
mkdir build
cd build
cmake .. -DMayo_BuildTests=ON -DMayo_BuildPluginAssimp=ON
cmake --build . --config Release --parallel `nproc`
# Execute Unit Tests
# Note: for some unknown reason unit tests are crashing for armv7(on very first test)
Xvfb $DISPLAY -screen 0 1280x1024x24 &
sleep 5s
./mayo --runtests