aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-04-24 21:09:35 +0100
committergingerBill <bill@gingerbill.org>2021-04-24 21:09:35 +0100
commit240a568eb9bbde870d0640521139cc09bb40ca40 (patch)
tree90bfb0c2779680c3b70a35236964c6fca08917bc
parentad953c4670a397cc22ab513dc538837a539076b5 (diff)
Update CI to run both old and new backends
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5fb36863d..e7acf1e9f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -11,7 +11,9 @@ jobs:
- name: build odin
run: make release
- name: Odin run
- run: ./odin run examples/demo/demo.odin
+ run: |
+ ./odin run examples/demo/demo.odin
+ ./odin run examples/demo/demo.odin -llvm-api
- name: Odin check
run: ./odin check examples/demo/demo.odin -vet
build_macOS:
@@ -27,7 +29,9 @@ jobs:
- name: build odin
run: make release
- name: Odin run
- run: ./odin run examples/demo/demo.odin
+ run: |
+ ./odin run examples/demo/demo.odin
+ ./odin run examples/demo/demo.odin -llvm-api
- name: Odin check
run: ./odin check examples/demo/demo.odin -vet
build_windows: