diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index d41ece1bc5..c1d2ff8d4b 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -25,7 +25,6 @@ jobs: 'OPTIONS_16BIT', 'OPTIONS_24BIT', 'OPTIONS_FULL_32BIT', - 'OPTIONS_VG_LITE', 'OPTIONS_SDL'] name: Build ${{ matrix.build_option }} - Ubuntu steps: @@ -52,8 +51,7 @@ jobs: # See BUILD_OPTIONS in tests/CMakeLists.txt. build_option: ['OPTIONS_16BIT', 'OPTIONS_24BIT', - 'OPTIONS_FULL_32BIT', - 'OPTIONS_VG_LITE'] + 'OPTIONS_FULL_32BIT'] compiler: [gcc, cl] name: Build ${{ matrix.build_option }} - ${{matrix.compiler }} - Windows diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 5161ded263..b389400d50 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -108,9 +108,7 @@ set(LVGL_TEST_OPTIONS_TEST_DEFHEAP ${SANITIZE_AND_COVERAGE_OPTIONS} ) -if (OPTIONS_VG_LITE) - set (BUILD_OPTIONS ${LVGL_TEST_OPTIONS_VG_LITE}) -elseif (OPTIONS_SDL) +if (OPTIONS_SDL) set (BUILD_OPTIONS ${LVGL_TEST_OPTIONS_SDL}) elseif (OPTIONS_NORMAL_8BIT) set (BUILD_OPTIONS ${LVGL_TEST_OPTIONS_NORMAL_8BIT}) diff --git a/tests/main.py b/tests/main.py index d35fb01c21..3d94b229e8 100755 --- a/tests/main.py +++ b/tests/main.py @@ -25,7 +25,6 @@ build_only_options = { 'OPTIONS_16BIT': 'Minimal config, 16 bit color depth', 'OPTIONS_24BIT': 'Normal config, 24 bit color depth', 'OPTIONS_FULL_32BIT': 'Full config, 32 bit color depth', - 'OPTIONS_VG_LITE': 'VG-Lite simulator with full config, 32 bit color depth', } if platform.system() != 'Windows':