-
Notifications
You must be signed in to change notification settings - Fork 6
49 lines (45 loc) · 1.3 KB
/
test.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
name: C CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install ctags
run: sudo apt-get install -y universal-ctags
- name: install flex
run: sudo apt-get install -y flex
- name: install bison
run: sudo apt-get install -y bison
- name: install shellcheck
run: sudo apt-get install -y shellcheck
- name: clone seqcexit
run: git clone https://github.com/lcn2/seqcexit
- name: install seqcexit
run: cd seqcexit && sudo make install
- name: clone independ
run: git clone https://github.com/lcn2/independ
- name: install independ
run: cd independ && sudo make install
- name: clone checknr
run: git clone https://github.com/lcn2/checknr.git
- name: install checknr
run: cd checknr && sudo make install
- name: clone picky
run: git clone https://github.com/lcn2/picky
- name: install picky
run: cd picky && sudo make install
- name: make
run: make
- name: make slow_release
run: make slow_release
- name: make clobber all test
run: make clobber all test
- name: make bug_report
run: make bug_report
- name: make clobber
run: make clobber