From db1e6b8a81ea8ec8017fc5ed8a84b852404e52b6 Mon Sep 17 00:00:00 2001 From: project-repo Date: Tue, 18 Apr 2023 23:04:16 +0200 Subject: [PATCH] Attempt Docker in a different way --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1f8f09..d64a431 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,11 @@ on: jobs: linux: runs-on: ubuntu-latest + container: + image: archlinux:latest steps: - - run: ls + - 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