diff options
| author | gingerBill <bill@gingerbill.org> | 2021-04-25 22:19:34 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-04-25 22:19:34 +0100 |
| commit | af3784ebb62fc80edfe0e25fa70fb9b920d8d2a1 (patch) | |
| tree | b5d05d872ea94a4e5c5f8f8f28be6415c531f741 /.github/workflows | |
| parent | ff933ca37ff5c092e9dd6810f4669538854b2a22 (diff) | |
Add `-DODIN_VERSION_RAW` to Makefile
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index deaeff48d..f9abf219f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,8 @@ jobs: run: ./odin run examples/demo/demo.odin - name: Odin check run: ./odin check examples/demo/demo.odin -vet + - name: Odin version + run: ./odin version build_macOS: runs-on: macos-latest steps: @@ -30,6 +32,8 @@ jobs: run: ./odin run examples/demo/demo.odin - name: Odin check run: ./odin check examples/demo/demo.odin -vet + - name: Odin version + run: ./odin version build_windows: runs-on: windows-latest steps: @@ -56,5 +60,7 @@ jobs: run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat odin check examples/demo/demo.odin -vet + - name: Odin version + run: ./odin version |