From 8db70b40e2e93031412b30156de17d3e40229bdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Mon, 2 Jun 2025 22:00:32 +0800 Subject: [PATCH] CI: add back disabled DFBSD --- .github/workflows/ci.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1b637e68..37ff2ad10 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -597,6 +597,42 @@ jobs: name: fastfetch-netbsd-amd64 path: ./fastfetch-*.* + dragonfly-amd64: + name: DragonFly-amd64 + runs-on: ubuntu-latest + if: false + permissions: + security-events: write + contents: read + steps: + - name: checkout repository + uses: actions/checkout@v4 + + - name: run VM + uses: vmactions/dragonflybsd-vm@v1 + with: + usesh: yes + prepare: | + uname -a + pkg update + pkg install -y cmake git pkgconf binutils wayland vulkan-headers vulkan-loader libxcb libXrandr libX11 libdrm glib dconf dbus sqlite3-tcl xfce4-conf egl opencl ocl-icd v4l_compat chafa libelf + + run: | + cmake -DSET_TWEAK=Off -DBUILD_TESTS=On -DENABLE_EMBEDDED_PCIIDS=On -DENABLE_EMBEDDED_AMDGPUIDS=On . + cmake --build . --target package --verbose -j4 + ./fastfetch --list-features + time ./fastfetch -c presets/ci.jsonc --stat false + time ./fastfetch -c presets/ci.jsonc --format json + time ./flashfetch + ldd fastfetch + ctest --output-on-failure + + - name: upload artifacts + uses: actions/upload-artifact@v4 + with: + name: fastfetch-dragonfly-amd64 + path: ./fastfetch-*.* + haiku-amd64: name: Haiku-amd64 runs-on: ubuntu-latest