-
Notifications
You must be signed in to change notification settings - Fork 7
/
dot.gitlab-ci.yml.qemu
97 lines (91 loc) · 2.55 KB
/
dot.gitlab-ci.yml.qemu
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
variables:
GIT_STRATEGY: clone
stages:
- test
before_script:
- git submodule sync --recursive
- git submodule update --init --recursive
job_1:
stage: test
image: test_ci
script:
- pwd
- ls
- cd translator/third_party/
- mkdir build_xed_aarch64
- cd build_xed_aarch64/
- ../xed/mfile.py --strip=/usr/bin/aarch64-linux-gnu-strip --cc=/usr/bin/aarch64-linux-gnu-gcc --cxx=/usr/bin/aarch64-linux-gnu-g++ --host-cpu=aarch64 --shared examples install
- cd kits/
- XED=`ls | grep install`
- ln -sf $XED xed
- cd xed/bin/
- CI_XED_PATH=`pwd`
- cd ../../../../../
- source dot.zshrc.xbyak
- cd tests/
- QEMU_AARCH64=/usr/local/bin/qemu-aarch64 TALL 1 90
tags:
- instruction_unit
job_2:
stage: test
image: test_ci
script:
- pwd
- ls
- cd translator/third_party/
- mkdir build_xed_aarch64
- cd build_xed_aarch64/
- ../xed/mfile.py --strip=/usr/bin/aarch64-linux-gnu-strip --cc=/usr/bin/aarch64-linux-gnu-gcc --cxx=/usr/bin/aarch64-linux-gnu-g++ --host-cpu=aarch64 --shared examples install
- cd kits/
- XED=`ls | grep install`
- ln -sf $XED xed
- cd xed/bin/
- CI_XED_PATH=`pwd`
- cd ../../../../../
- source dot.zshrc.xbyak
- cd tests/
- QEMU_AARCH64=/usr/local/bin/qemu-aarch64 TALL 91 115
tags:
- instruction_unit
job_3:
stage: test
image: test_ci
script:
- pwd
- ls
- cd translator/third_party/
- mkdir build_xed_aarch64
- cd build_xed_aarch64/
- ../xed/mfile.py --strip=/usr/bin/aarch64-linux-gnu-strip --cc=/usr/bin/aarch64-linux-gnu-gcc --cxx=/usr/bin/aarch64-linux-gnu-g++ --host-cpu=aarch64 --shared examples install
- cd kits/
- XED=`ls | grep install`
- ln -sf $XED xed
- cd xed/bin/
- CI_XED_PATH=`pwd`
- cd ../../../../../
- source dot.zshrc.xbyak
- cd tests/
- QEMU_AARCH64=/usr/local/bin/qemu-aarch64 TALL 116 155
tags:
- instruction_unit
job_4:
stage: test
image: test_ci
script:
- pwd
- ls
- cd translator/third_party/
- mkdir build_xed_aarch64
- cd build_xed_aarch64/
- ../xed/mfile.py --strip=/usr/bin/aarch64-linux-gnu-strip --cc=/usr/bin/aarch64-linux-gnu-gcc --cxx=/usr/bin/aarch64-linux-gnu-g++ --host-cpu=aarch64 --shared examples install
- cd kits/
- XED=`ls | grep install`
- ln -sf $XED xed
- cd xed/bin/
- CI_XED_PATH=`pwd`
- cd ../../../../../
- source dot.zshrc.xbyak
- cd tests/
- QEMU_AARCH64=/usr/local/bin/qemu-aarch64 TALL 156 NUM_INSTRUCTIONS
tags:
- instruction_unit