File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 40
40
- name : Meson - Install
41
41
run : |
42
42
DESTDIR="$(pwd)/_work/meson/prefix" ninja -C _work/meson/build install
43
- nm -D _work/meson/build/libwpe-1.0.so | sort -u > _work/meson/symbols
43
+ nm -D -P _work/meson/build/libwpe-1.0.so \
44
+ | awk '$2 == "T" || $2 == "U" {print $2 " " $1}' \
45
+ > _work/meson/symbols
44
46
(cd _work/meson/prefix && find lib -type f | sort) > _work/meson/files
45
47
- name : Meson - Archive Artifacts
46
48
uses : actions/upload-artifact@v1
57
59
- name : CMake - Install
58
60
run : |
59
61
DESTDIR="$(pwd)/_work/cmake/prefix" make -C _work/cmake/build install
60
- nm -D _work/cmake/build/libwpe-1.0.so | sort -u > _work/cmake/symbols
62
+ nm -D -P _work/cmake/build/libwpe-1.0.so \
63
+ | awk '$2 == "T" || $2 == "U" {print $2 " " $1}' \
64
+ > _work/cmake/symbols
61
65
(cd _work/cmake/prefix && find lib -type f | sort) > _work/cmake/files
62
66
- name : CMake - Archive Artifacts
63
67
uses : actions/upload-artifact@v1
You can’t perform that action at this time.
0 commit comments