Browse Source

Correct CI

gingerBill 3 years ago
parent
commit
1502066303
2 changed files with 4 additions and 5 deletions
  1. 4 3
      .github/workflows/ci.yml
  2. 0 2
      examples/all/all_main.odin

+ 4 - 3
.github/workflows/ci.yml

@@ -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

+ 0 - 2
examples/all/all_main.odin

@@ -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"