Created
June 15, 2016 14:35
-
-
Save mverzilli/2e078b58a3a48b084beda385e8d5a9a3 to your computer and use it in GitHub Desktop.
CircleCI for Crystal Projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Include this file in your project's root folder to integrate with CircleCI. | |
# Replace 0.18.0 with the Crystal version you're using. | |
dependencies: | |
cache_directories: | |
- "crystal-0.18.0-1" | |
pre: | |
- if [[ ! -e crystal-0.18.0-1 ]]; then wget https://github.com/crystal-lang/crystal/releases/download/0.18.0/crystal-0.18.0-1-linux-x86_64.tar.gz && tar xvfz crystal-0.18.0-1-linux-x86_64.tar.gz; fi | |
test: | |
pre: | |
- crystal-0.18.0-1/bin/crystal deps | |
override: | |
- crystal-0.18.0-1/bin/crystal spec |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment