diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-11-01 17:44:05 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-11-01 17:44:05 +0100 |
| commit | 96ba8f35d496149d4486181b89f4b072759281d4 (patch) | |
| tree | 84dc53dd6db121e3482e7e7e40167cf4c8b29840 /.github | |
| parent | 9a5ddc5218c5ebec49057c6086af8dba0330914b (diff) | |
CI: Run demo with debug info.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 608538e90..6c9603db5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,9 @@ jobs: - name: Odin run run: ./odin run examples/demo/demo.odin timeout-minutes: 10 + - name: Odin run -debug + run: ./odin run examples/demo/demo.odin -debug + timeout-minutes: 10 - name: Core library tests run: | cd tests/core @@ -51,6 +54,9 @@ jobs: - name: Odin run run: ./odin run examples/demo/demo.odin timeout-minutes: 10 + - name: Odin run -debug + run: ./odin run examples/demo/demo.odin -debug + timeout-minutes: 10 build_windows: runs-on: windows-latest steps: @@ -78,6 +84,12 @@ jobs: call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat odin run examples/demo/demo.odin timeout-minutes: 10 + - name: Odin run -debug + shell: cmd + run: | + call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat + odin run examples/demo/demo.odin -debug + timeout-minutes: 10 - name: Core library tests shell: cmd run: | |