File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ before_install:
7373 - if [ ! -d "cmocka/build" ] || [ ! -f "cmocka/build/Makefile" ]; then mkdir -p cmocka/build && (cd cmocka/build && cmake ..); fi
7474 - if [ "$TRAVIS_OS_NAME" = "osx" ] && [ ! -f "cmocka/build/src/libcmocka.dylib" ]; then (cd cmocka/build && make -j2); fi
7575 - if [ "$TRAVIS_OS_NAME" = "linux" ] && [ ! -f "cmocka/build/src/libcmocka.so" ]; then (cd cmocka/build && make -j2); fi
76+ - if [ "$DEPLOY_BUILD" = "TRUE" ]; then sudo snap install universal-ctags; fi
7677 - if [ "$DEPLOY_BUILD" = "TRUE" ]; then pip3 install --user codecov==2.0.22; export CFLAGS="-coverage"; fi
7778
7879script :
Original file line number Diff line number Diff line change 11#! /bin/sh -e
22status=0
33# Dump the current ABI
4- abi-dumper ./build/libyang.so -o ./build/libyang.dump -lver " $( PKG_CONFIG_PATH=./build pkg-config --modversion libyang) "
4+ LC_ALL=C.UTF-8 PATH=/snap/bin: $PATH abi-dumper ./build/libyang.so -o ./build/libyang.dump -lver " $( PKG_CONFIG_PATH=./build pkg-config --modversion libyang) " -public-headers ./src -public-headers ./build/src
55# Compare the current ABI with previous ABI
66abi-compliance-checker -l libyang.so -old ./libyang.dump -new ./build/libyang.dump -s || status=$?
77# Generate and dump text output
You can’t perform that action at this time.
0 commit comments