summaryrefslogtreecommitdiff
path: root/scripts/jobs/validate/test
blob: bedef2e458b91a966db7929315bc44cd25fe5cae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash -e

case $prDryRun in
  yep)
    echo "DRY RUN"
    ;;
  *)
    ./pull-binary-libs.sh

    # build quick using STARR built upstream, as specified by scalaVersion
    # (in that sense it's locker, since it was built with starr by that upstream job)
    ant -Dstarr.version=$scalaVersion \
       -Dscalac.args.optimise=-optimise \
       -Dlocker.skip=1 -Dextra.repo.url=$prRepoUrl \
       $testExtraArgs ${testTarget-test.core docs.done}
    ;;
esac