File: script.sh

package info (click to toggle)
freespace2 3.7.4%2Brepack-1
  • links: PTS, VCS
  • area: non-free
  • in suites: buster
  • size: 22,236 kB
  • sloc: cpp: 393,535; ansic: 4,106; makefile: 1,091; xml: 181; sh: 137
file content (8 lines) | stat: -rwxr-xr-x 240 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/usr/bin/env sh

if [ "$TRAVIS_OS_NAME" = "linux" ]; then
    make -j 4
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
    cd projects/Xcode
    xcodebuild ARCHS=$MACOSX_ARCH ONLY_ACTIVE_ARCH=NO -configuration "$CONFIGURATION" | xcpretty -c
fi