I’ve waited for a few hours, but no build occurs, I"m not sure if I"m doing something wrong or if my build requests really aren’t getting processed correctly
Look at the repository’s request page. It indicates that you have a problem with the configuration file. It’s a little hard to see, but a reasonable YAML parser will tell you that the indentation on line 78
is wrong (since it’s not a part of a multiline string). You can try something like:
install:
- |
if [ "$AIIDA_VERSION" == "develop" ]; then # installs develop branch
.travis-data/install_aiida_github.sh;
fi
⋮