Created
July 11, 2016 14:18
-
-
Save vanhecke/4f3abe4ea1ca4417293fe0d5657c8875 to your computer and use it in GitHub Desktop.
Using a Crystal app on Gitlab's free CI service
This file contains 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
image: jhass/crystal-build-x86_64 | |
before_script: | |
- apt-get install redis-server -y | |
- service redis-server start | |
- crystal deps | |
- crystal run scripts/seed.cr | |
spec: | |
script: | |
- crystal run spec/ladderz_spec.cr | |
compile: | |
script: | |
- crystal compile --release src/ladderz.cr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment