Compare commits

...

2 Commits

Author SHA1 Message Date
pal1000 ad1fe45f4e Don't try running tests on Windows
Fixes: fa803c7e
2022-08-25 12:05:20 +03:00
pal1000 9a3794cd02 ci: Fix syntax error in build setup command
Fixes: fa803c7e
2022-08-25 12:05:01 +03:00
2 changed files with 4 additions and 2 deletions

View File

@ -35,7 +35,7 @@ jobs:
# the code assumes msvc style printf atm
export CFLAGS=-D__USE_MINGW_ANSI_STDIO=0
meson -Dtests=false _build
meson -Dtests=disabled _build
meson compile -C _build
debian-meson:

View File

@ -19,5 +19,7 @@ tests = [
# yuck
foreach test : tests
test_file = configure_file(input: test + '.sh', output: test, copy: true)
run_command('chmod', '755', test_file, check : true)
if host_machine.system() != 'windows'
run_command('chmod', '755', test_file, check : true)
endif
endforeach