tests.sh 17.4 KB
Newer Older
1
#!/bin/bash
2 3 4 5
#
# Build and runs tests for the protobuf project.  The tests as written here are
# used by both Jenkins and Travis, though some specialized logic is required to
# handle the differences between them.
6

7 8 9 10 11 12
on_travis() {
  if [ "$TRAVIS" == "true" ]; then
    "$@"
  fi
}

13 14 15
# For when some other test needs the C++ main build, including protoc and
# libprotobuf.
internal_build_cpp() {
16 17 18 19 20
  if [ -f src/protoc ]; then
    # Already built.
    return
  fi

Josh Haberman's avatar
Josh Haberman committed
21
  if [[ $(uname -s) == "Linux" && "$TRAVIS" == "true" ]]; then
22 23 24 25 26 27 28
    # Install GCC 4.8 to replace the default GCC 4.6. We need 4.8 for more
    # decent C++ 11 support in order to compile conformance tests.
    sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
    sudo apt-get update -qq
    sudo apt-get install -qq g++-4.8
    export CXX="g++-4.8" CC="gcc-4.8"
  fi
29

30
  ./autogen.sh
31 32
  ./configure CXXFLAGS="-fPIC"  # -fPIC is needed for python cpp test.
                                # See python/setup.py for more details
33
  make -j2
34 35 36 37
}

build_cpp() {
  internal_build_cpp
38
  make check -j2
39
  cd conformance && make test_cpp && cd ..
40

41 42 43 44 45 46
  # The benchmark code depends on cmake, so test if it is installed before
  # trying to do the build.
  # NOTE: The travis macOS images say they have cmake, but the xcode8.1 image
  # appears to be missing it: https://github.com/travis-ci/travis-ci/issues/6996
  if [[ $(type cmake 2>/dev/null) ]]; then
    # Verify benchmarking code can build successfully.
Yilun Chong's avatar
Yilun Chong committed
47
    cd benchmarks && make cpp-benchmark && cd ..
48 49 50 51 52
  else
    echo ""
    echo "WARNING: Skipping validation of the bench marking code, cmake isn't installed."
    echo ""
  fi
53 54 55 56 57
}

build_cpp_distcheck() {
  ./autogen.sh
  ./configure
58 59 60
  make dist

  # List all files that should be included in the distribution package.
61
  git ls-files | grep "^\(java\|python\|objectivec\|csharp\|js\|ruby\|php\|cmake\|examples\|src/google/protobuf/.*\.proto\)" |\
62
    grep -v ".gitignore" | grep -v "java/compatibility_tests" |\
63
    grep -v "python/compatibility_tests" | grep -v "csharp/compatibility_tests" > dist.lst
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  # Unzip the dist tar file.
  DIST=`ls *.tar.gz`
  tar -xf $DIST
  cd ${DIST//.tar.gz}
  # Check if every file exists in the dist tar file.
  FILES_MISSING=""
  for FILE in $(<../dist.lst); do
    if ! file $FILE &>/dev/null; then
      echo "$FILE is not found!"
      FILES_MISSING="$FILE $FILES_MISSING"
    fi
  done
  cd ..
  if [ ! -z "$FILES_MISSING" ]; then
    echo "Missing files in EXTRA_DIST: $FILES_MISSING"
    exit 1
  fi

  # Do the regular dist-check for C++.
83
  make distcheck -j2
84 85
}

86
build_csharp() {
87
  # Required for conformance tests and to regenerate protos.
88
  internal_build_cpp
89
  NUGET=/usr/local/bin/nuget.exe
90

91 92 93 94
  # Perform "dotnet new" once to get the setup preprocessing out of the
  # way. That spews a lot of output (including backspaces) into logs
  # otherwise, and can cause problems. It doesn't matter if this step
  # is performed multiple times; it's cheap after the first time anyway.
95 96 97
  # (It also doesn't matter if it's unnecessary, which it will be on some
  # systems. It's necessary on Jenkins in order to avoid unprintable
  # characters appearing in the JUnit output.)
98 99 100 101
  mkdir dotnettmp
  (cd dotnettmp; dotnet new > /dev/null)
  rm -rf dotnettmp

102 103 104 105
  # Check that the protos haven't broken C# codegen.
  # TODO(jonskeet): Fail if regenerating creates any changes.
  csharp/generate_protos.sh
  
106
  csharp/buildall.sh
107
  cd conformance && make test_csharp && cd ..
108 109 110

  # Run csharp compatibility test between 3.0.0 and the current version.
  csharp/compatibility_tests/v3.0.0/test.sh 3.0.0
111 112
}

Tim Swast's avatar
Tim Swast committed
113 114 115 116 117 118 119
build_golang() {
  # Go build needs `protoc`.
  internal_build_cpp
  # Add protoc to the path so that the examples build finds it.
  export PATH="`pwd`/src:$PATH"

  # Install Go and the Go protobuf compiler plugin.
Feng Xiao's avatar
Feng Xiao committed
120 121 122
  on_travis sudo apt-get update -qq
  on_travis sudo apt-get install -qq golang

Tim Swast's avatar
Tim Swast committed
123 124
  export GOPATH="$HOME/gocode"
  mkdir -p "$GOPATH/src/github.com/google"
Feng Xiao's avatar
Feng Xiao committed
125
  rm -f "$GOPATH/src/github.com/google/protobuf"
Tim Swast's avatar
Tim Swast committed
126 127 128 129
  ln -s "`pwd`" "$GOPATH/src/github.com/google/protobuf"
  export PATH="$GOPATH/bin:$PATH"
  go get github.com/golang/protobuf/protoc-gen-go

Feng Xiao's avatar
Feng Xiao committed
130
  cd examples && PROTO_PATH="-I../src -I." make gotest && cd ..
Tim Swast's avatar
Tim Swast committed
131 132
}

133 134 135 136
use_java() {
  version=$1
  case "$version" in
    jdk7)
137
      on_travis sudo apt-get install openjdk-7-jdk
138
      export PATH=/usr/lib/jvm/java-7-openjdk-amd64/bin:$PATH
139
      export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
140 141
      ;;
    oracle7)
142 143 144 145 146 147 148
      if [ "$TRAVIS" == "true" ]; then
        sudo apt-get install python-software-properties # for apt-add-repository
        echo "oracle-java7-installer shared/accepted-oracle-license-v1-1 select true" | \
          sudo debconf-set-selections
        yes | sudo apt-add-repository ppa:webupd8team/java
        yes | sudo apt-get install oracle-java7-installer
      fi;
149
      export PATH=/usr/lib/jvm/java-7-oracle/bin:$PATH
150
      export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
151 152 153
      ;;
  esac

154 155 156 157 158
  if [ "$TRAVIS" != "true" ]; then
    MAVEN_LOCAL_REPOSITORY=/var/maven_local_repository
    MVN="$MVN -e -X --offline -Dmaven.repo.local=$MAVEN_LOCAL_REPOSITORY"
  fi;

159 160
  which java
  java -version
161
  $MVN -version
162 163
}

164
# --batch-mode supresses download progress output that spams the logs.
165
MVN="mvn --batch-mode"
166

167
build_java() {
168 169
  version=$1
  dir=java_$version
170 171
  # Java build needs `protoc`.
  internal_build_cpp
172 173
  cp -r java $dir
  cd $dir && $MVN clean && $MVN test
174 175 176
  cd ../..
}

177 178
# The conformance tests are hard-coded to work with the $ROOT/java directory.
# So this can't run in parallel with two different sets of tests.
179
build_java_with_conformance_tests() {
180
  # Java build needs `protoc`.
181
  internal_build_cpp
182
  cd java && $MVN test && $MVN install
183
  cd util && $MVN package assembly:single
Feng Xiao's avatar
Feng Xiao committed
184
  cd ../..
185 186 187 188 189
  cd conformance && make test_java && cd ..
}

build_javanano() {
  # Java build needs `protoc`.
190
  internal_build_cpp
191
  cd javanano && $MVN test && cd ..
192 193 194 195
}

build_java_jdk7() {
  use_java jdk7
196
  build_java_with_conformance_tests
197 198 199
}
build_java_oracle7() {
  use_java oracle7
200
  build_java oracle7
201
}
202 203 204 205 206 207 208 209
build_java_compatibility() {
  use_java jdk7
  internal_build_cpp
  # Use the unit-tests extraced from 2.5.0 to test the compatibilty between
  # 3.0.0-beta-4 and the current version.
  cd java/compatibility_tests/v2.5.0
  ./test.sh 3.0.0-beta-4
}
210 211 212 213 214 215 216 217 218 219

build_javanano_jdk7() {
  use_java jdk7
  build_javanano
}
build_javanano_oracle7() {
  use_java oracle7
  build_javanano
}

220
internal_install_python_deps() {
221 222 223
  if [ "$TRAVIS" != "true" ]; then
    return;
  fi
224 225 226 227 228 229
  # Install tox (OS X doesn't have pip).
  if [ $(uname -s) == "Darwin" ]; then
    sudo easy_install tox
  else
    sudo pip install tox
  fi
230
  # Only install Python2.6/3.x on Linux.
231 232 233 234
  if [ $(uname -s) == "Linux" ]; then
    sudo apt-get install -y python-software-properties # for apt-add-repository
    sudo apt-add-repository -y ppa:fkrull/deadsnakes
    sudo apt-get update -qq
235
    sudo apt-get install -y python3.3 python3.3-dev
236
    sudo apt-get install -y python3.4 python3.4-dev
Jie Luo's avatar
Jie Luo committed
237 238
    sudo apt-get install -y python3.5 python3.5-dev
    sudo apt-get install -y python3.6 python3.6-dev
239
  fi
240 241
}

242
build_objectivec_ios() {
243
  # Reused the build script that takes care of configuring and ensuring things
244 245 246 247 248
  # are up to date.  The OS X test runs the objc conformance test, so skip it
  # here.
  # Note: travis has xctool installed, and we've looked at using it in the past
  # but it has ended up proving unreliable (bugs), an they are removing build
  # support in favor of xcbuild (or just xcodebuild).
249
  objectivec/DevTools/full_mac_build.sh \
250
      --core-only --skip-xcode-osx --skip-objc-conformance "$@"
251 252
}

253 254
build_objectivec_ios_debug() {
  build_objectivec_ios --skip-xcode-release
255 256
}

257 258
build_objectivec_ios_release() {
  build_objectivec_ios --skip-xcode-debug
259 260 261
}

build_objectivec_osx() {
262 263 264 265
  # Reused the build script that takes care of configuring and ensuring things
  # are up to date.
  objectivec/DevTools/full_mac_build.sh \
      --core-only --skip-xcode-ios
266
}
267

268 269 270 271 272 273
build_objectivec_cocoapods_integration() {
  # Update pod to the latest version.
  gem install cocoapods --no-ri --no-rdoc
  objectivec/Tests/CocoaPods/run_tests.sh
}

274
build_python() {
275
  internal_build_cpp
276
  internal_install_python_deps
277
  cd python
278
  # Only test Python 2.6/3.x on Linux
279
  if [ $(uname -s) == "Linux" ]; then
Jie Luo's avatar
Jie Luo committed
280
    envlist=py\{27,33,34,35,36\}-python
281 282 283 284
  else
    envlist=py27-python
  fi
  tox -e $envlist
285 286 287 288
  cd ..
}

build_python_cpp() {
289
  internal_build_cpp
290
  internal_install_python_deps
291 292
  export LD_LIBRARY_PATH=../src/.libs # for Linux
  export DYLD_LIBRARY_PATH=../src/.libs # for OS X
293
  cd python
Jie Luo's avatar
Jie Luo committed
294
  # Only test Python 3.x on Linux
295
  if [ $(uname -s) == "Linux" ]; then
Jie Luo's avatar
Jie Luo committed
296
    envlist=py\{27,33,34,35,36\}-cpp
297 298 299 300
  else
    envlist=py27-cpp
  fi
  tox -e $envlist
301 302 303
  cd ..
}

304 305 306 307 308 309 310 311 312 313
build_python_compatibility() {
  internal_build_cpp
  # Use the unit-tests extraced from 2.5.0 to test the compatibilty.
  cd python/compatibility_tests/v2.5.0
  # Test between 2.5.0 and the current version.
  ./test.sh 2.5.0
  # Test between 3.0.0-beta-1 and the current version.
  ./test.sh 3.0.0-beta-1
}

314
build_ruby21() {
315
  internal_build_cpp  # For conformance tests.
316 317 318
  cd ruby && bash travis-test.sh ruby-2.1 && cd ..
}
build_ruby22() {
319
  internal_build_cpp  # For conformance tests.
320 321 322
  cd ruby && bash travis-test.sh ruby-2.2 && cd ..
}
build_jruby() {
323
  internal_build_cpp  # For conformance tests.
Feng Xiao's avatar
Feng Xiao committed
324 325 326 327 328 329 330
  # TODO(xiaofeng): Upgrade to jruby-9.x. There are some broken jests to be
  # fixed.
  cd ruby && bash travis-test.sh jruby-1.7 && cd ..
}
build_ruby_all() {
  build_ruby21
  build_ruby22
331 332
  # TODO(teboring): Disable jruby test temperarily for it randomly fails.
  # https://grpc-testing.appspot.com/job/protobuf_pull_request/735/consoleFull.
333
  # build_jruby
334 335
}

336 337
build_javascript() {
  internal_build_cpp
338
  cd js && npm install && npm test && cd ..
339
  cd conformance && make test_nodejs && cd ..
340 341
}

342 343 344 345 346 347
generate_php_test_proto() {
  internal_build_cpp
  pushd php/tests
  # Generate test file
  rm -rf generated
  mkdir generated
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
  ../../src/protoc --php_out=generated         \
    proto/test.proto                           \
    proto/test_include.proto                   \
    proto/test_no_namespace.proto              \
    proto/test_prefix.proto                    \
    proto/test_php_namespace.proto             \
    proto/test_empty_php_namespace.proto       \
    proto/test_reserved_enum_lower.proto       \
    proto/test_reserved_enum_upper.proto       \
    proto/test_reserved_enum_value_lower.proto \
    proto/test_reserved_enum_value_upper.proto \
    proto/test_reserved_message_lower.proto    \
    proto/test_reserved_message_upper.proto    \
    proto/test_service.proto                   \
    proto/test_service_namespace.proto         \
363
    proto/test_descriptors.proto
364
  pushd ../../src
365 366
  ./protoc --php_out=../php/tests/generated -I../php/tests -I. \
    ../php/tests/proto/test_import_descriptor_proto.proto
367 368 369 370
  popd
  popd
}

371 372 373 374 375
use_php() {
  VERSION=$1
  PHP=`which php`
  PHP_CONFIG=`which php-config`
  PHPIZE=`which phpize`
376 377 378
  ln -sfn "/usr/local/php-${VERSION}/bin/php" $PHP
  ln -sfn "/usr/local/php-${VERSION}/bin/php-config" $PHP_CONFIG
  ln -sfn "/usr/local/php-${VERSION}/bin/phpize" $PHPIZE
379
  generate_php_test_proto
380 381
}

Bo Yang's avatar
Bo Yang committed
382 383 384 385 386 387 388 389
use_php_zts() {
  VERSION=$1
  PHP=`which php`
  PHP_CONFIG=`which php-config`
  PHPIZE=`which phpize`
  ln -sfn "/usr/local/php-${VERSION}-zts/bin/php" $PHP
  ln -sfn "/usr/local/php-${VERSION}-zts/bin/php-config" $PHP_CONFIG
  ln -sfn "/usr/local/php-${VERSION}-zts/bin/phpize" $PHPIZE
390
  generate_php_test_proto
Bo Yang's avatar
Bo Yang committed
391 392
}

393 394 395 396 397 398 399 400
use_php_bc() {
  VERSION=$1
  PHP=`which php`
  PHP_CONFIG=`which php-config`
  PHPIZE=`which phpize`
  ln -sfn "/usr/local/php-${VERSION}-bc/bin/php" $PHP
  ln -sfn "/usr/local/php-${VERSION}-bc/bin/php-config" $PHP_CONFIG
  ln -sfn "/usr/local/php-${VERSION}-bc/bin/phpize" $PHPIZE
401
  generate_php_test_proto
402 403
}

404
build_php5.5() {
405
  use_php 5.5
406

407
  pushd php
408 409
  rm -rf vendor
  cp -r /usr/local/vendor-5.5 vendor
410 411
  wget https://phar.phpunit.de/phpunit-4.8.0.phar -O /usr/bin/phpunit
  phpunit
412
  popd
413
  pushd conformance
414
  make test_php
415
  popd
416 417
}

418
build_php5.5_c() {
419 420
  use_php 5.5
  wget https://phar.phpunit.de/phpunit-4.8.0.phar -O /usr/bin/phpunit
421 422
  pushd php/tests
  /bin/bash ./test.sh
423
  popd
424 425 426 427
  # TODO(teboring): Add it back
  # pushd conformance
  # make test_php_c
  # popd
428 429
}

Bo Yang's avatar
Bo Yang committed
430 431
build_php5.5_zts_c() {
  use_php_zts 5.5
432
  wget https://phar.phpunit.de/phpunit-4.8.0.phar -O /usr/bin/phpunit
Bo Yang's avatar
Bo Yang committed
433
  cd php/tests && /bin/bash ./test.sh && cd ../..
434 435 436 437
  # TODO(teboring): Add it back
  # pushd conformance
  # make test_php_zts_c
  # popd
438 439
}

440
build_php5.6() {
441
  use_php 5.6
442
  pushd php
443 444
  rm -rf vendor
  cp -r /usr/local/vendor-5.6 vendor
445 446
  wget https://phar.phpunit.de/phpunit-5.7.0.phar -O /usr/bin/phpunit
  phpunit
447
  popd
448
  pushd conformance
449
  make test_php
450
  popd
451 452
}

453 454
build_php5.6_c() {
  use_php 5.6
455
  wget https://phar.phpunit.de/phpunit-5.7.0.phar -O /usr/bin/phpunit
456
  cd php/tests && /bin/bash ./test.sh && cd ../..
457 458
  # TODO(teboring): Add it back
  # pushd conformance
459
  # make test_php_c
460
  # popd
461 462 463 464 465 466
}

build_php5.6_zts_c() {
  use_php_zts 5.6
  wget https://phar.phpunit.de/phpunit-5.7.0.phar -O /usr/bin/phpunit
  cd php/tests && /bin/bash ./test.sh && cd ../..
467 468 469 470
  # TODO(teboring): Add it back
  # pushd conformance
  # make test_php_zts_c
  # popd
471 472
}

473
build_php5.6_mac() {
474
  generate_php_test_proto
475 476
  # Install PHP
  curl -s https://php-osx.liip.ch/install.sh | bash -s 5.6
477 478
  PHP_FOLDER=`find /usr/local -type d -name "php5-5.6*"`  # The folder name may change upon time
  export PATH="$PHP_FOLDER/bin:$PATH"
479 480

  # Install phpunit
481
  curl https://phar.phpunit.de/phpunit-5.6.10.phar -L -o phpunit.phar
482 483 484 485 486 487 488 489 490 491
  chmod +x phpunit.phar
  sudo mv phpunit.phar /usr/local/bin/phpunit

  # Install valgrind
  echo "#! /bin/bash" > valgrind
  chmod ug+x valgrind
  sudo mv valgrind /usr/local/bin/valgrind

  # Test
  cd php/tests && /bin/bash ./test.sh && cd ../..
492 493
  # TODO(teboring): Add it back
  # pushd conformance
494
  # make test_php_c
495
  # popd
496 497
}

498
build_php7.0() {
499
  use_php 7.0
500
  pushd php
501 502
  rm -rf vendor
  cp -r /usr/local/vendor-7.0 vendor
503 504
  wget https://phar.phpunit.de/phpunit-5.6.0.phar -O /usr/bin/phpunit
  phpunit
505
  popd
506
  pushd conformance
507
  make test_php
508
  popd
509 510
}

511 512
build_php7.0_c() {
  use_php 7.0
513
  wget https://phar.phpunit.de/phpunit-5.6.0.phar -O /usr/bin/phpunit
514
  cd php/tests && /bin/bash ./test.sh && cd ../..
515 516
  # TODO(teboring): Add it back
  # pushd conformance
517
  # make test_php_c
518
  # popd
519 520 521 522 523 524
}

build_php7.0_zts_c() {
  use_php_zts 7.0
  wget https://phar.phpunit.de/phpunit-5.6.0.phar -O /usr/bin/phpunit
  cd php/tests && /bin/bash ./test.sh && cd ../..
525 526 527 528
  # TODO(teboring): Add it back.
  # pushd conformance
  # make test_php_zts_c
  # popd
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
}

build_php7.0_mac() {
  generate_php_test_proto
  # Install PHP
  curl -s https://php-osx.liip.ch/install.sh | bash -s 7.0
  PHP_FOLDER=`find /usr/local -type d -name "php7-7.0*"`  # The folder name may change upon time
  export PATH="$PHP_FOLDER/bin:$PATH"

  # Install phpunit
  curl https://phar.phpunit.de/phpunit-5.6.0.phar -L -o phpunit.phar
  chmod +x phpunit.phar
  sudo mv phpunit.phar /usr/local/bin/phpunit

  # Install valgrind
  echo "#! /bin/bash" > valgrind
  chmod ug+x valgrind
  sudo mv valgrind /usr/local/bin/valgrind

  # Test
  cd php/tests && /bin/bash ./test.sh && cd ../..
550 551
  # TODO(teboring): Add it back
  # pushd conformance
552
  # make test_php_c
553
  # popd
554 555
}

556 557 558 559 560
build_php_compatibility() {
  internal_build_cpp
  php/tests/compatibility_test.sh
}

561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
build_php7.1() {
  use_php 7.1
  pushd php
  rm -rf vendor
  cp -r /usr/local/vendor-7.1 vendor
  wget https://phar.phpunit.de/phpunit-5.6.0.phar -O /usr/bin/phpunit
  phpunit
  popd
  pushd conformance
  # TODO(teboring): Add it back
  # make test_php
  popd
}

build_php7.1_c() {
  use_php 7.1
  wget https://phar.phpunit.de/phpunit-5.6.0.phar -O /usr/bin/phpunit
  cd php/tests && /bin/bash ./test.sh && cd ../..
  pushd conformance
  # make test_php_c
  popd
}

build_php7.1_zts_c() {
  use_php_zts 7.1
  wget https://phar.phpunit.de/phpunit-5.6.0.phar -O /usr/bin/phpunit
  cd php/tests && /bin/bash ./test.sh && cd ../..
  pushd conformance
  # make test_php_c
  popd
}

593
build_php_all_32() {
594 595 596
  build_php5.5
  build_php5.6
  build_php7.0
597
  build_php7.1
598 599
  build_php5.5_c
  build_php5.6_c
600
  build_php7.0_c
601
  build_php7.1_c
Bo Yang's avatar
Bo Yang committed
602
  build_php5.5_zts_c
603 604
  build_php5.6_zts_c
  build_php7.0_zts_c
605
  build_php7.1_zts_c
606 607
}

608 609 610 611 612
build_php_all() {
  build_php_all_32
  build_php_compatibility
}

613 614 615 616 617 618 619 620 621 622 623 624 625
# Note: travis currently does not support testing more than one language so the
# .travis.yml cheats and claims to only be cpp.  If they add multiple language
# support, this should probably get updated to install steps and/or
# rvm/gemfile/jdk/etc. entries rather than manually doing the work.

# .travis.yml uses matrix.exclude to block the cases where app-get can't be
# use to install things.

# -------- main --------

if [ "$#" -ne 1 ]; then
  echo "
Usage: $0 { cpp |
626
            cpp_distcheck |
627 628 629
            csharp |
            java_jdk7 |
            java_oracle7 |
630
            java_compatibility |
631 632 633
            javanano_jdk7 |
            javanano_oracle7 |
            objectivec_ios |
634 635
            objectivec_ios_debug |
            objectivec_ios_release |
636
            objectivec_osx |
637
            objectivec_cocoapods_integration |
638 639
            python |
            python_cpp |
640
            python_compatibility |
641 642
            ruby21 |
            ruby22 |
Feng Xiao's avatar
Feng Xiao committed
643
            jruby |
644 645 646 647 648 649
            ruby_all |
            php5.5   |
            php5.5_c |
            php5.6   |
            php5.6_c |
            php7.0   |
650
            php7.0_c |
651
            php_compatibility |
652 653
            php7.1   |
            php7.1_c |
654
            php_all)
655 656 657 658 659 660 661
"
  exit 1
fi

set -e  # exit immediately on error
set -x  # display all commands
eval "build_$1"