From ae8e9af11f31b018f575a4dd0c633a9e4740cf23 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 29 May 2023 13:35:46 +0300 Subject: [PATCH] ci: skip building examples/coroutines/simple_coroutines.v for now --- cmd/tools/modules/testing/common.v | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/tools/modules/testing/common.v b/cmd/tools/modules/testing/common.v index 989ecdabce..5ab2de69c3 100644 --- a/cmd/tools/modules/testing/common.v +++ b/cmd/tools/modules/testing/common.v @@ -181,6 +181,10 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession { // Check the README.md for detailed information. skip_files << 'examples/call_v_from_c/v_test_print.v' skip_files << 'examples/call_v_from_c/v_test_math.v' + // Skip the compilation of the coroutines example for now, since the Photon wrapper + // is only available on macos for now, and it is not yet trivial enough to + // build/install on the CI: + skip_files << 'examples/coroutines/simple_coroutines.v' $if msvc { skip_files << 'vlib/v/tests/const_comptime_eval_before_vinit_test.v' // _constructor used }