From 5415059bd82058acff8f90e9a64625708bda0a32 Mon Sep 17 00:00:00 2001 From: project-repo Date: Tue, 18 Apr 2023 23:30:20 +0200 Subject: [PATCH] Try the clone method --- .github/workflows/ci.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3084640..70cf0d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,17 +8,10 @@ jobs: container: image: archlinux:latest steps: - - run: ls - - run: ls .. - - run: echo $GITHUB_WORKSPACE - - run: ls $GITHUB_WORKSPACE - - run: pwd - - run: ls / - - run: ls /github - - run: ls /github/home - - run: ls /github/workflow - - run: ls /home - - run: bash ../../scripts/install-development-environment + - run: git clone https://github.com/project-repo/cagebreak + - run: cd cagebreak + - 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