-
-
Notifications
You must be signed in to change notification settings - Fork 739
92 lines (77 loc) · 2.76 KB
/
tests.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
name: Tests
env:
GEF_CI_CACHE_DIR: /tmp
PY_VER: 0
GEF_CI_NB_CPU: 1
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
runner: [ubuntu-24.04, ubuntu-22.04]
name: "Tests/${{ matrix.runner }}"
runs-on: ${{ matrix.runner }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Install python and toolchain
run: |
export NEEDRESTART_MODE=n
sudo apt-get update
sudo apt-get install -y gdb-multiarch python3-dev python3-pip python3-wheel python3-setuptools git cmake gcc g++ pkg-config libglib2.0-dev gdbserver qemu-user
- name: Install python and toolchain
if: matrix.runner == 'ubuntu-24.04'
run: |
sudo apt-get install -y python3-full
- name: Install python and toolchain
if: matrix.runner != 'ubuntu-24.04'
run: |
python3 -m pip install pip -U
- name: Set runtime environment variables
run: |
echo PY_VER=`gdb -q -nx -ex "pi print('.'.join(map(str, sys.version_info[:2])))" -ex quit` >> $GITHUB_ENV
echo GEF_CI_NB_CPU="`grep -c ^processor /proc/cpuinfo`" >> $GITHUB_ENV
echo GEF_CI_ARCH="`uname --processor`" >> $GITHUB_ENV
echo GEF_CI_CACHE_DIR="`python3 -m pip cache dir`" >> $GITHUB_ENV
- name: Cache dependencies
uses: actions/cache@v4
id: cache-deps
env:
cache-name: cache-deps
with:
key: ${{ matrix.runner }}-pip-${{ hashFiles('**/requirements.txt') }}
path: ${{ env.GEF_CI_CACHE_DIR }}
restore-keys:
${{ matrix.runner }}-pip-${{ env.cache-name }}-
${{ matrix.runner }}-pip-
${{ matrix.runner }}-${{ env.cache-name }}-
${{ matrix.runner }}-
- name: Install python and toolchain
if: matrix.runner != 'ubuntu-24.04'
run: |
test "${{ env.PY_VER }}" == "0" && exit 1
mkdir -p ${{ env.GEF_CI_CACHE_DIR }}
python${{ env.PY_VER }} -m pip install --user --upgrade -r tests/requirements.txt
- name: Install Python Requirements
if: matrix.runner == 'ubuntu-24.04'
run: |
test "${{ env.PY_VER }}" == "0" && exit 1
mkdir -p ${{ env.GEF_CI_CACHE_DIR }}
python${{ env.PY_VER }} -m pip install --break-system-packages --user --upgrade -r tests/requirements.txt
- name: Setup GEF
run: |
echo "source $(pwd)/gef.py" > ~/.gdbinit
gdb -q -ex 'gef missing' -ex 'gef help' -ex 'gef config' -ex start -ex continue -ex quit /bin/pwd
- name: Run Tests
run: |
make -C tests/binaries -j ${{ env.GEF_CI_NB_CPU }}
python${{ env.PY_VER }} -m pytest --forked -n ${{ env.GEF_CI_NB_CPU }} -v -m "not benchmark" tests/