-
Notifications
You must be signed in to change notification settings - Fork 54
153 lines (134 loc) · 5.24 KB
/
trik-toolchain.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
name: 'TRIK toolchain on Ubuntu Latest'
on:
push:
branches:
pull_request:
branches:
workflow_dispatch:
jobs:
trik-toolchain:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0} # to force import of ~/.bash_profile
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Restore TRIK toolchain
uses: actions/cache/restore@v3
with:
path: /opt/trik-sdk
key: trik-sdk
- name: Check if TRIK toolchain is up-to-date
id: trik-toolchain-check
run: |
curl -O https://dl.trikset.com/distro/latest-full/trik-sdk-x86_64-arm926ejse-toolchain-trik-nodistro.0.sh.sha256
diff -qN trik-sdk-x86_64-arm926ejse-toolchain-trik-nodistro.0.sh.sha256 \
/opt/trik-sdk/trik-sdk-x86_64-arm926ejse-toolchain-trik-nodistro.0.sh.sha256 \
&& echo "install=false" >> $GITHUB_OUTPUT \
|| echo "install=true" >> $GITHUB_OUTPUT
- name: Install TRIK toolchain
if: steps.trik-toolchain-check.outputs.install == 'true'
run: |
rm -rf /opt/trik-sdk
curl -O https://dl.trikset.com/distro/latest-full/trik-sdk-x86_64-arm926ejse-toolchain-trik-nodistro.0.sh
chmod +x ./trik-sdk-x86_64-arm926ejse-toolchain-trik-nodistro.0.sh
./trik-sdk-x86_64-arm926ejse-toolchain-trik-nodistro.0.sh -y
mv trik-sdk-x86_64-arm926ejse-toolchain-trik-nodistro.0.sh.sha256 /opt/trik-sdk
- name: Save TRIK toolchain
if: steps.trik-toolchain-check.outputs.install == 'true'
uses: actions/cache/save@v3
with:
path: /opt/trik-sdk
key: trik-sdk
- name: Install QEMU with binfmt
run: |
sudo apt update
sudo apt install -y qemu-user-binfmt
- name: Configure git
run: |
git --version
git config --global core.symlinks true
git config --global core.autocrlf false
#prepare for actions/checkout, otherwise it fails
echo "LC_ALL=en_US.utf8" >> $GITHUB_ENV
echo "$(dirname $(realpath $(which git)))" >> $GITHUB_PATH
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $GITHUB_ENV
echo "PERL5LIB=$PERL5LIB" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: recursive
- name: Use ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.ref_name }}-${{ github.job }}
- name: Check available tools
run: |
set -xeo pipefail
. /opt/trik-sdk/environment-setup-arm926ejse-oe-linux-gnueabi
uname -a
rsync --version
qmake --version && qmake -query
python3 --version
echo $CXX
$CXX --version
ccache --version
qemu-arm --version
- name: "[TRIK brick] QMake"
timeout-minutes: 1
run: |
. /opt/trik-sdk/environment-setup-arm926ejse-oe-linux-gnueabi
mkdir build-brick
cd build-brick
qmake CONFIG+=release CONFIG+=noPch CONFIG+=ccache \
"$GITHUB_WORKSPACE/"
- name: "[TRIK brick] QMake all"
timeout-minutes: 3
run: |
. /opt/trik-sdk/environment-setup-arm926ejse-oe-linux-gnueabi
cd build-brick
make -j $(nproc) qmake_all
- name: "[TRIK brick] Make all"
timeout-minutes: 10
run: |
. /opt/trik-sdk/environment-setup-arm926ejse-oe-linux-gnueabi
cd build-brick
make -j $(nproc) all
- name: "[QEMU + NoPython] QMake"
timeout-minutes: 1
run: |
. /opt/trik-sdk/environment-setup-arm926ejse-oe-linux-gnueabi
mkdir build-qemu
cd build-qemu
qmake CONFIG+=release CONFIG+=tests CONFIG+=noPch CONFIG+=ccache \
CONFIG+=trik_not_brick CONFIG+=trik_nopython \
"$GITHUB_WORKSPACE/"
- name: "[QEMU + NoPython] QMake all"
timeout-minutes: 3
run: |
. /opt/trik-sdk/environment-setup-arm926ejse-oe-linux-gnueabi
cd build-qemu
make -j $(nproc) qmake_all
- name: "[QEMU + NoPython] Make all"
timeout-minutes: 10
run: |
. /opt/trik-sdk/environment-setup-arm926ejse-oe-linux-gnueabi
cd build-qemu
make -j $(nproc) all
- name: "[QEMU + NoPython] Unit tests"
timeout-minutes: 5
run: |
. /opt/trik-sdk/environment-setup-arm926ejse-oe-linux-gnueabi
cd build-qemu
# export TRIK_PYTHONPATH=$(python3 -c "import sys; import os; print(os.pathsep.join(sys.path))")
# export PYTHONVERBOSE=2
# export PYTHONDEBUG=2
# export PYTHONMALLOC=malloc_debug
# export PYTHONFAULTHANDLER=1
# export PYTHONDEVMODE=1 #only from 3.7, overrides PYTHONMALLOC and some other
export QEMU_LD_PREFIX=/opt/trik-sdk/sysroots/arm926ejse-oe-linux-gnueabi/
env | sort
make -k check TESTARGS="-platform offscreen"