From abf2ba621a0c92749a256be4fd79384cfcc86cf8 Mon Sep 17 00:00:00 2001 From: project-repo Date: Tue, 18 Apr 2023 23:39:59 +0200 Subject: [PATCH] Adjust paths --- .github/workflows/ci.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce3ca43..7e720a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,12 +10,9 @@ jobs: steps: - run: pacman -Syu --noconfirm git sudo - run: git clone https://github.com/project-repo/cagebreak - - run: cd cagebreak - - run: git branch - - run: git fetch origin/feature/continuous-integration - - run: git checkout feature/continuous-integration - - 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 + - run: git -C cagebreak checkout feature/continuous-integration + - run: bash cagebreak/scripts/install-development-environment + - run: meson setup cagebreak/build -Dxwayland=true -Dman-pages=true --buildtype=release + - run: ninja -C cagebreak/build + - run: meson test -C cagebreak/build