From d56a03ac53db99bc39ab0854b0b9750039f20dc7 Mon Sep 17 00:00:00 2001 From: project-repo Date: Fri, 21 Apr 2023 22:53:34 +0200 Subject: [PATCH] Add both devel and basic jobs --- .github/workflows/ci.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c2bd87..44ad9ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: branches: [ "feature/continuous-integration", "development" ] jobs: - linux: + devel: runs-on: ubuntu-latest container: image: archlinux:latest @@ -15,5 +15,20 @@ jobs: - run: bash scripts/install-development-environment - run: meson setup build -Dxwayland=true -Dman-pages=true --buildtype=release - run: ninja -C build - - run: meson test -C build --suite devel -v + - run: meson test -C build --suite devel --suite devel-long -v + +jobs: + basic: + runs-on: ubuntu-latest + container: + image: archlinux:latest + steps: + - run: pacman-key --init + - run: pacman -Syu --noconfirm git sudo + - uses: actions/checkout@v3 + - run: git config --global --add safe.directory /__w/cagebreak/cagebreak + - run: bash scripts/install-development-environment + - run: meson setup build -Dxwayland=true -Dman-pages=true --buildtype=release + - run: ninja -C build + - run: meson test -C build --suite basic -v