Skip to content

Commit 441b395

Browse files
authored
Merge pull request #2 from howjmay/ci
feat: Set up CI workflow
2 parents 453a243 + b24b6fe commit 441b395

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.github/workflows/github_actions.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Github Actions
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
jobs:
8+
# for validate test cases
9+
host_arm:
10+
runs-on: ubuntu-20.04
11+
strategy:
12+
matrix:
13+
arch: [armv7, aarch64]
14+
cxx_compiler: [g++-10, clang++-11]
15+
steps:
16+
- name: checkout code
17+
uses: actions/[email protected]
18+
- name: build artifact
19+
# The Github Action for non-x86 CPU
20+
# https://github.com/uraimo/run-on-arch-action
21+
uses: uraimo/[email protected]
22+
with:
23+
arch: ${{ matrix.arch }}
24+
distro: ubuntu20.04
25+
env: |
26+
CXX: ${{ matrix.cxx_compiler }}
27+
install: |
28+
apt-get update -q -y
29+
apt-get install -q -y "${{ matrix.cxx_compiler }}" make
30+
apt-get install -q -y gcc
31+
run: |
32+
make check
33+
34+
coding_style:
35+
runs-on: ubuntu-20.04
36+
steps:
37+
- name: checkout code
38+
uses: actions/[email protected]
39+
- name: style check
40+
# clang-format version should be set
41+
run: |
42+
sudo apt-get install -q -y clang-format
43+
sh .ci/check-format.sh
44+
shell: bash

0 commit comments

Comments
 (0)