Correct CI

This commit is contained in:
gingerBill
2022-01-30 21:43:42 +00:00
parent 35a826a0fd
commit 1502066303
2 changed files with 4 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ jobs:
- name: Odin run -debug
run: ./odin run examples/demo -debug
timeout-minutes: 10
- name: Odin check examples/local
- name: Odin check examples/all
run: ./odin check examples/all
timeout-minutes: 10
- name: Core library tests
@@ -65,7 +65,7 @@ jobs:
- name: Odin run -debug
run: ./odin run examples/demo -debug
timeout-minutes: 10
- name: Odin check examples/local
- name: Odin check examples/all
run: ./odin check examples/all
timeout-minutes: 10
- name: Core library tests
@@ -111,7 +111,8 @@ jobs:
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat
odin run examples/demo -debug
timeout-minutes: 10
- name: Odin check examples/local
- name: Odin check examples/all
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat
odin check examples/all

View File

@@ -13,7 +13,6 @@ import compress "core:compress"
import gzip "core:compress/gzip"
import zlib "core:compress/zlib"
import container "core:container"
import bit_array "core:container/bit_array"
import priority_queue "core:container/priority_queue"
import queue "core:container/queue"
@@ -49,7 +48,6 @@ import x25519 "core:crypto/x25519"
import dynlib "core:dynlib"
import encoding "core:encoding"
import base32 "core:encoding/base32"
import base64 "core:encoding/base64"
import csv "core:encoding/csv"