Skip to content

Commit 17e6fc1

Browse files
authored
fix build flags in CI, bump to 1.0.7 (#70)
1 parent 582be46 commit 17e6fc1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ jobs:
186186
- name: Build
187187
env:
188188
CC: ${{ matrix.compiler }}
189-
BuildFlag: ${{ matrix.coverage && '-Db_coverage=true' || '--buildtype=release -Dprefer_static=true'}}
189+
BuildFlags: ${{ matrix.coverage && '-Db_coverage=true' || '--buildtype=release -Dprefer_static=true'}}
190190
run: |
191-
meson setup build $BuildFlag
191+
meson setup build ${{ env.BuildFlags }}
192192
meson compile --verbose -C build
193193
194194
- name: Test

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('astroterm', 'c',
2-
version: '1.0.6',
2+
version: '1.0.7',
33
default_options : ['warning_level=3', 'buildtype=debug'],
44
meson_version: '>=1.4.0',
55
)

0 commit comments

Comments
 (0)