# Travis Windows Builds of Julia

**URL:** https://discourse.julialang.org/t/travis-windows-builds-of-julia/18208
**Category:** General Usage
**Created:** [December 1, 2018, 7:03pm UTC](https://discourse.julialang.org/t/travis-windows-builds-of-julia/18208 "2018-12-01T19:03:50Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![ccoffrin](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ccoffrin/32/400_2.png) [@ccoffrin](https://discourse.julialang.org/u/ccoffrin)
#### Post date: [December 1, 2018, 7:03pm UTC](https://discourse.julialang.org/t/travis-windows-builds-of-julia/18208/1 "2018-12-01T19:03:50Z")

</div>

Is there any plan to add Julia to the support languages for Travis CI on Windows?

> **[Windows Early Release](https://travis-ci.community/t/windows-early-release/195)**
>
> Welcome to Windows for Travis CI! As this is a brand-new (early-release) build environment, we are very interested to get your thoughts on how you think it should work, what tools should be installed, and anything else that will help you or your...

---

<div class="post-metadata">

### Author: ![wookyoung](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/wookyoung/32/157_2.png) [@wookyoung](https://discourse.julialang.org/u/wookyoung)
#### Post date: [December 2, 2018, 8:26am UTC](https://discourse.julialang.org/t/travis-windows-builds-of-julia/18208/2 "2018-12-02T08:26:19Z")

</div>

Here’s my `.travis.yml` for [sample project](https://travis-ci.org/wookay/TestWindows.jl).

```julia
notifications:
  email: false
matrix:
  include:
    - os: windows
      language: sh
      before_install:
        - choco install julia
      script:
        - julia --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'
        - julia --color=yes --project=. -e 'using Pkg; Pkg.test()'
    - os: linux
      language: julia
      julia:
        - 1.0

```
