-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.gitlab-ci.yml
47 lines (42 loc) · 1.12 KB
/
.gitlab-ci.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
variables:
GIT_STRATEGY: clone
stages:
- test
before_script:
#ClangFormatCheck:
# stage: test
# image: bce7edfda510
# script:
# - ROOT_DIR_TRANSLATOR=`pwd`
# - cd translator/include/xbyak_translator_for_aarch64/instructions
# - ../../../tools/init_variables.sh
# - ../../../tools/remove_unused_variable.sh
# - ../../../tools/replace_preg_name.sh
# - cd ${ROOT_DIR_TRANSLATOR}
# - pwd
# - ./.github/automation/clang-format.sh
gcc:
stage: test
image: bce7edfda510
script:
- source .github/env/setenv-gcc
- git submodule sync --recursive
- git submodule update --init --recursive
- .github/automation/xed.sh -n
- make -C translator/third_party/xbyak_aarch64
- make
- cd translator/tests
- make -j$(nproc)
# At the moment, FCC can not build xbyak_translator_aarch64
#fcc:
# stage: test
# image: bce7edfda510
# script:
# - source .github/env/setenv-fcc
# - git submodule sync --recursive
# - git submodule update --init --recursive
# - .github/automation/xed.sh -n
# - make -C translator/third_party/xbyak_aarch64
# - make
# - cd translator/tests
# - make -j$(nproc)