diff options
| author | gingerBill <bill@gingerbill.org> | 2019-10-27 18:43:53 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-10-27 18:43:53 +0000 |
| commit | 233c6e2d3ac28c930483ebebcb6251a8eca997cc (patch) | |
| tree | 5ff1bcc1c0b63a34db879f6533e9ac22c50ae6c1 | |
| parent | a29a6d928562f9fac36d860ee9a1fb679ead57ae (diff) | |
| parent | a7a31e4c23ee2385e5cfa93863b3bb64aa88121c (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odin
| -rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50ca88d95..7c43b01e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,20 +33,23 @@ jobs: - name: Install cURL run: choco install curl - name: Download and unpack LLVM bins + shell: cmd run: | cd bin curl -sL https://github.com/odin-lang/Odin/releases/download/llvm-windows/llvm-binaries.zip --output llvm-binaries.zip - ls 7z x llvm-binaries.zip > nul - name: build Odin + shell: cmd run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat ./build_ci.bat - name: Odin run + shell: cmd run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat odin run examples/demo/demo.odin - name: Odin check + shell: cmd run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat odin check examples/demo/demo.odin -vet |