Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
- alpine() { docker exec -it alpine "$@"; }
install:
- alpine apk update
- alpine apk add build-base cmake git python2 python3
- alpine apk add build-base cmake git python2 python3 clang
script:
- alpine cmake .
- alpine make -j2
Expand All @@ -145,6 +145,8 @@ jobs:
-DCMAKE_VERBOSE_MAKEFILE=ON
-DCMAKE_CXX_FLAGS="-static -no-pie"
-DCMAKE_C_FLAGS="-static -no-pie" .
-DCMAKE_C_COMPILER=clang
-DCMAKE_CXX_COMPILER=clang++
- alpine make -j2
- alpine find bin/ -type f -perm -u=x -exec strip {} +
- alpine ls -lh bin/
Expand Down