probcomp / bayeslite

BayesDB on SQLite. A Bayesian database table for querying the probable implications of data as easily as SQL databases query the data itself.
http://probcomp.csail.mit.edu/software/bayesdb
Apache License 2.0
922 stars 64 forks source link

Is the Jenkins server running the full test suite ie including __ci_ tests? #496

Closed fsaad closed 7 years ago

fsaad commented 7 years ago

bayeslite-master-crashes has the following:

# Prepare a safe noisy shell and a clean tree.
set -Ceux
git clean -dxff

# Set up dependencies.
mkdir docker/deps
while read dep job; do
    mkdir docker/deps/"$dep"
    tar -C ../"$job" -c -f - build pythenv.sh | tar -C docker/deps/"$dep" -x -p -f -
done <<EOF
bayeslite-apsw  bayeslite-apsw-oldest
cgpm        cgpm-master-crashes
crosscat    crosscat-master-crashes
EOF

# Build a docker image.
image=probcomp/jenkins/"$JOB_NAME":"$BUILD_NUMBER"
docker build -t "$image" -f docker/ubuntu1404 .

# Extract the build products.
docker run --rm "$image" tar cf - build dist | tar xvf -

However docker/ubuntu1404 runs ./check.sh, which by default skips the integration tests https://github.com/probcomp/bayeslite/blob/master/docker/ubuntu1404#L19-L23