You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: user/languages/crystal.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,20 +42,21 @@ and cc [@asterite](https://github.com/asterite),
42
42
43
43
## Configuration options
44
44
45
-
By default Travis CI will use the latest Crystal release. It is also possible
46
-
to test projects against the nightly build of Crystal. To do so, set the
47
-
`crystal` key in `.travis.yml`. For example, to test against both nightly and
48
-
the latest release:
45
+
By default Travis CI will use the latest Crystal stable release. It is also possible
46
+
to test projects against the nightly or specific version build of Crystal. To do so, set the
47
+
`crystal` key in `.travis.yml`. For example, to test against the latest stable release, the
48
+
most recent nightly, and a specific version stable release:
49
49
50
50
```yaml
51
51
dist: xenial
52
52
language: crystal
53
53
crystal:
54
54
- latest
55
55
- nightly
56
+
- 0.35.1. # example of specific version
56
57
```
57
58
{: data-file=".travis.yml"}
58
59
59
-
> Note that the nightly build will only be available on Xenial and later releases
60
+
> Note that the nightly build will only be available on Linux environments
60
61
61
62
> You can also have a look at the [Crystal](https://config.travis-ci.com/ref/language/crystal) section in our [Travis CI Build Config Reference](https://config.travis-ci.com/).
0 commit comments