diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 61c545567d..2667c54116 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,11 +10,7 @@ pool: vmImage: 'ubuntu-latest' steps: - - script: echo Hello, world! - displayName: 'Run a one-line script' - - script: | cd tests - echo tests content: python build.py displayName: 'Build' diff --git a/tests/build.py b/tests/build.py index 651141ccf8..fadf388913 100644 --- a/tests/build.py +++ b/tests/build.py @@ -23,7 +23,6 @@ def build(name, defines): d_all += '"' cmd = "make -j8 BIN=test.bin LVGL_DIR_NAME=" + lvgldirname + " DEFINES=" + d_all + " WARNINGS=" + warnings + " OPTIMIZATION=" + optimization - print(cmd) print("---------------------------") print("Clean")