mirror of
https://github.com/dynup/kpatch
synced 2024-12-18 19:34:30 +00:00
3aa5abb807
create-diff-object doesn't really need the full kernel object file as input. All it requires is a symbol table. Switch to using "eu-readelf -s"'s output instead of object files. This will enable us to cover more cases in unit tests. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Signed-off-by: Artem Savkov <asavkov@redhat.com>
11 lines
210 B
YAML
11 lines
210 B
YAML
language: c
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install -y libelf-dev linux-headers-$(uname -r) shellcheck elfutils
|
|
|
|
script:
|
|
- make
|
|
- make unit
|
|
- make check
|
|
- sudo make install
|