aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaytan Laats <laytanlaats@hotmail.com>2024-06-04 20:19:34 +0200
committerLaytan Laats <laytanlaats@hotmail.com>2024-06-04 20:21:52 +0200
commitcd99625dd352e2ceaf621c8ae0f50de8ace3177d (patch)
tree80da218f12dc1dc7057f23cbc77805304788a54a
parent3e159736cdf7654d5739a1340458aa23aaccbf7a (diff)
ci: compile needed libraries
-rw-r--r--.github/workflows/ci.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ffb2077d1..c808bb05e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -53,6 +53,12 @@ jobs:
- name: Odin report
run: ./odin report
timeout-minutes: 1
+ - name: Compile needed Vendor
+ run: |
+ make -C $(./odin root)/vendor/stb/src
+ make -C $(./odin root)/vendor/cgltf/src
+ make -C $(./odin root)/vendor/miniaudio/src
+ timeout-minutes: 10
- name: Odin check
run: ./odin check examples/demo -vet
timeout-minutes: 10
@@ -109,6 +115,12 @@ jobs:
- name: Odin report
run: ./odin report
timeout-minutes: 1
+ - name: Compile needed Vendor
+ run: |
+ make -C $(./odin root)/vendor/stb/src
+ make -C $(./odin root)/vendor/cgltf/src
+ make -C $(./odin root)/vendor/miniaudio/src
+ timeout-minutes: 10
- name: Odin check
run: ./odin check examples/demo -vet
timeout-minutes: 10
@@ -148,6 +160,12 @@ jobs:
- name: Odin report
run: ./odin report
timeout-minutes: 1
+ - name: Compile needed Vendor
+ run: |
+ make -C $(./odin root)/vendor/stb/src
+ make -C $(./odin root)/vendor/cgltf/src
+ make -C $(./odin root)/vendor/miniaudio/src
+ timeout-minutes: 10
- name: Odin check
run: ./odin check examples/demo -vet
timeout-minutes: 10