Files
tubestation/taskcluster/scripts/misc/build-infer-linux.sh
Robert Bartlensky f6393eaf57 Bug 1473951: Add infer to taskcluster and build. r=gps
MozReview-Commit-ID: BHi3E6J3nuH
2018-07-06 17:37:16 +01:00

23 lines
364 B
Bash
Executable File

#!/bin/bash
set -x -e -v
# This script is for building infer for Linux.
WORKSPACE=$HOME/workspace
HOME_DIR=$WORKSPACE/build
UPLOAD_DIR=$HOME/artifacts
cd $HOME_DIR/src
# gets a bit too verbose here
set +x
cd build/build-infer
./build-infer.py -c infer-linux64.json
set -x
# Put a tarball in the artifacts dir
mkdir -p $UPLOAD_DIR
cp infer.tar.* $UPLOAD_DIR