Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
numba
GitHub Repository: numba/llvmlite
Path: blob/main/buildscripts/incremental/after_success.sh
1154 views
1
#!/bin/bash
2
3
source activate $CONDA_ENV
4
5
# Make sure any error below is reported as such
6
set -v -e
7
8
if [ "$RUN_COVERAGE" == "yes" ]; then codecov; coveralls; fi
9
10