-
-
Notifications
You must be signed in to change notification settings - Fork 361
104 lines (93 loc) · 2.54 KB
/
tcc.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: TinyCC build
on:
push:
paths:
- '**.c'
- '**.h'
- '**.in'
- '**.inc'
- '**/meson.build'
- 'subprojects/**'
- 'test/**'
- '.github/workflows/tcc.yml'
branches:
- 'dev'
- 'stable'
- 'container-*'
schedule:
- cron: '0 18 * * 1,3,5' # Three-weekly at 18:00 UTC on Monday, Wednesday, and Friday
pull_request:
paths:
- '**.c'
- '**.h'
- '**.in'
- '**.inc'
- '**/meson.build'
- 'subprojects/**'
- 'test/**'
- '.github/workflows/tcc.yml'
branches:
- 'dev'
- 'stable'
- 'release-*'
# Automatically cancel any previous workflow on new push.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
build:
name: ubuntu-tcc-test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Checkout TinyCC repository
run: |
git clone https://github.com/tinycc/tinycc
cd tinycc
#git checkout mob
# Well-tested commit
git checkout 5b28165fbf8549c5d92893339e4f6b6181316894
chmod +x ./configure
- name: Compiling and installing TinyCC
working-directory: tinycc
run: |
./configure --prefix=/usr
make
sudo make install
- name: Install dependencies
run: |
sudo apt-get --assume-yes install python3-wheel python3-setuptools
sudo python3 -m pip install ninja
- name: Checkout meson from ret2libc git
run: |
git clone https://github.com/ret2libc/meson.git
cd meson
git checkout tiny-cc
python3 setup.py build
sudo python3 setup.py install
- name: Checkout our Testsuite Binaries
uses: actions/checkout@v3
with:
repository: rizinorg/rizin-testbins
path: test/bins
- name: Meson setup
env:
CC: tcc
run: meson setup --prefix=/usr build
- name: Meson compile and install
run: ninja -C build && sudo ninja -C build install
- name: Run unit tests
run: ninja -C build test
- name: Install test dependencies
run: |
python3 -m pip install --user 'git+https://github.com/rizinorg/rz-pipe#egg=rzpipe&subdirectory=python'
sudo apt-get update
sudo apt-get --assume-yes install libc6 libc6-i386
- name: Run tests
env:
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig
run: |
rizin -v
rz-test -v
cd test
rz-test -L -o results.json