1#!/bin/bash
2set -x -e -v
3
4# This script is for building infer for Linux.
5
6cd $GECKO_PATH
7
8# gets a bit too verbose here
9set +x
10
11cd build/build-infer
12./build-infer.py -c infer-linux64.json
13
14set -x
15
16# Put a tarball in the artifacts dir
17mkdir -p $UPLOAD_DIR
18cp infer.tar.* $UPLOAD_DIR
19