From f96b0297908daf42e4baf2935efb5c9a58092451 Mon Sep 17 00:00:00 2001 From: project-repo Date: Fri, 21 Apr 2023 22:45:49 +0200 Subject: [PATCH] Change to basic test suite per checkin --- .github/workflows/ci.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2e5b7a..a85afa2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,14 +11,9 @@ jobs: - run: pacman-key --init - run: pacman -Syu --noconfirm git sudo - uses: actions/checkout@v2 - with: - fetch-depth: 0 - run: git config --global --add safe.directory /__w/cagebreak/cagebreak - run: bash scripts/install-development-environment - - run: | - for commit in $(git rev-list ${{ github.base_ref }}..${{ github.head_ref }}); do - meson setup build -Dxwayland=true -Dman-pages=true --buildtype=release - ninja -C build - meson test -C build --suite devel -v - done + - run: meson setup build -Dxwayland=true -Dman-pages=true --buildtype=release + - run: ninja -C build + - run: meson test -C build --suite devel -v