Skip to content

Commit 5c3a956

Browse files
Sadjy SADJANSam Chen
Sadjy SADJAN
and
Sam Chen
authored
Moved CI from Buildkite to GHA (#34)
* Create main.yml * Update main.yml * Update and rename main.yml to test.yml * trigger action * Update test.yml * Update .github/workflows/test.yml Co-authored-by: Sam Chen <[email protected]> * Update .github/workflows/test.yml Co-authored-by: Sam Chen <[email protected]> Co-authored-by: Sam Chen <[email protected]>
1 parent 75b24c5 commit 5c3a956

File tree

1 file changed

+82
-0
lines changed

1 file changed

+82
-0
lines changed

.github/workflows/test.yml

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-20.04
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Set up env
17+
run: |
18+
sudo apt update
19+
sudo apt install -y cppcheck
20+
21+
- name: Install buildifier
22+
run: |
23+
sudo wget -q https://github.com/bazelbuild/buildtools/releases/download/3.2.0/buildifier -O /usr/local/bin/buildifier
24+
sudo chmod +x /usr/local/bin/buildifier
25+
26+
- name: Coding style check
27+
run: ./tools/ci_format_check common utils
28+
29+
- name: Buildifier check
30+
run: ./tools/ci_buildifier_check
31+
32+
- name: Static analysis check
33+
run: cppcheck --force --error-exitcode=1 -q common utils
34+
35+
- name: TE=1 bazel test opt ASAN
36+
run: bazel test --build_tests_only -c opt --test_output=all --config asan --define trit_encoding=1 -- //... -//mobile/...
37+
38+
- name: TE=1 bazel test dbg ASAN
39+
run: bazel test --build_tests_only -c dbg --test_output=all --config asan --define trit_encoding=1 -- //... -//mobile/ios/...
40+
41+
- name: TE=1 bazel test opt TSAN
42+
run: bazel test --build_tests_only -c opt --test_output=all --config tsan --define trit_encoding=1 -- //... -//mobile/...
43+
44+
- name: TE=1 bazel test dbg TSAN
45+
run: bazel test --build_tests_only -c dbg --test_output=all --config tsan --define trit_encoding=1 -- //... -//mobile/...
46+
47+
- name: TE=1 bazel test opt UBSAN
48+
run: bazel test --build_tests_only -c opt --test_output=all --config ubsan --define trit_encoding=1 -- //... -//mobile/...
49+
50+
- name: TE=1 bazel test dbg UBSAN
51+
run: bazel test --build_tests_only -c dbg --test_output=all --config ubsan --define trit_encoding=1 -- //... -//mobile/...
52+
53+
- name: TE=3 bazel test opt
54+
run: bazel test --build_tests_only -c opt --test_output=all --define trit_encoding=3 -- //... -//mobile/ios/...
55+
56+
- name: TE=3 bazel test debug
57+
run: bazel test --build_tests_only -c dbg --test_output=all --define trit_encoding=3 -- //... -//mobile/ios/...
58+
59+
- name: TE=4 bazel test opt
60+
run: bazel test --build_tests_only -c opt --test_output=all --define trit_encoding=4 -- //... -//mobile/ios/...
61+
62+
- name: TE=4 bazel test debug
63+
run: bazel test --build_tests_only -c dbg --test_output=all --define trit_encoding=4 -- //... -//mobile/ios/...
64+
65+
- name: TE=5 bazel test opt
66+
run: bazel test --build_tests_only -c opt --test_output=all --define trit_encoding=5 -- //... -//mobile/ios/...
67+
68+
- name: TE=5 bazel test debug
69+
run: bazel test --build_tests_only -c dbg --test_output=all --define trit_encoding=5 -- //... -//mobile/ios/...
70+
71+
- name: CMake script
72+
run: |
73+
mkdir build
74+
cd build
75+
cmake -DCMAKE_INSTALL_PREFIX=. -DTRINARY_TEST=ON ..
76+
make -j16 && make test
77+
78+
- name: Bazel test bootlin x86_64 toolchains
79+
run: bazel test --build_tests_only --test_output=all --config=bootlin_x86_64_core_i7 -- //... -//mobile/ios/...
80+
81+
- name: bazel test bootlin i686 toolchains
82+
run: bazel test --build_tests_only --test_output=all --config=bootlin_i686 -- //... -//mobile/ios/...

0 commit comments

Comments
 (0)