Skip to content

Commit 4265016

Browse files
oSoMoNmisyltoad
authored andcommitted
CI: fix meson invocation in workflow to avoid deprecation warning
1 parent f8b33d3 commit 4265016

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
- name: Build with gcc
2727
run: |
2828
export CC=gcc CXX=g++
29-
meson build-gcc/ -Dinput_emulation=disabled --werror --auto-features=enabled
29+
meson setup build-gcc/ -Dinput_emulation=disabled --werror --auto-features=enabled
3030
ninja -C build-gcc/
3131
- name: Build with gcc (no vr)
3232
run: |
3333
export CC=gcc CXX=g++
34-
meson build-gcc-novr/ -Dinput_emulation=disabled -Denable_openvr_support=false --werror --auto-features=enabled
34+
meson setup build-gcc-novr/ -Dinput_emulation=disabled -Denable_openvr_support=false --werror --auto-features=enabled
3535
ninja -C build-gcc-novr/
3636
# - name: Build with clang
3737
# run: |
3838
# export CC=clang CXX=clang++
39-
# meson build-clang/ -Dinput_emulation=disabled --werror --auto-features=enabled
39+
# meson setup build-clang/ -Dinput_emulation=disabled --werror --auto-features=enabled
4040
# ninja -C build-clang/

0 commit comments

Comments
 (0)