diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index b7df1f1c3..06e00bb64 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -102,10 +102,10 @@ jobs: run: ctest --output-on-failure --verbose working-directory: build - - name: Install required software to process UI tests - run: sudo apt-get install -y -qq clang-format + - name: Uninstall optional software for some commands + run: sudo apt-get purge -y -qq clang-format - - name: UI Test + - name: More test Poac run: ctest --output-on-failure --verbose working-directory: build @@ -117,7 +117,7 @@ jobs: run: ./poac --help working-directory: build - - name: Running Test + - name: Test binary # FIXME: memory leak on Ninja # https://github.com/poacpm/poac/runs/6859118992?check_suite_focus=true#step:16:21 if: matrix.build_type == 'Release' diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index e901db462..3c64c15af 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -44,10 +44,10 @@ jobs: run: ctest --output-on-failure --verbose working-directory: build - - name: Install required software to process UI tests + - name: Install optional software for some commands run: brew install clang-format - - name: UI Test + - name: More test Poac run: ctest --output-on-failure --verbose working-directory: build @@ -59,7 +59,7 @@ jobs: run: ./poac --help working-directory: build - - name: Running Test + - name: Test binary run: | ./build/poac create hello_world cd hello_world