-
Notifications
You must be signed in to change notification settings - Fork 118
57 lines (53 loc) · 1.46 KB
/
main.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
name: Github Actions
on: [push, pull_request]
jobs:
host-x86:
runs-on: ubuntu-22.04
strategy:
matrix:
compiler: [gcc-12, clang]
steps:
- name: checkout code
uses: actions/checkout@v4
- name: build artifact
env:
CC: ${{ matrix.compiler }}
run: |
sudo apt-get update -q -y
sudo apt-get install -q -y graphviz jq
sudo apt-get install -q -y qemu-user
sudo apt-get install -q -y build-essential
make clean config
make check-snapshots || exit 1
make clean config ARCH=arm
make check || exit 1
make clean config ARCH=riscv
make check || exit 1
host-arm:
runs-on: ubuntu-22.04
steps:
- name: checkout code
uses: actions/checkout@v4
- name: build artifact
# The GitHub Action for non-x86 CPU
# https://github.com/uraimo/run-on-arch-action
uses: uraimo/[email protected]
with:
arch: armv7
distro: ubuntu22.04
install: |
apt-get update -q -y
apt-get install -q -y build-essential
run: |
make config ARCH=arm
make check || exit 1
coding-style:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: coding convention
run: |
sudo apt-get install -q -y clang-format-12
.ci/check-newline.sh
.ci/check-format.sh
shell: bash