diff --git a/.github/workflows/compatibility_test.yaml b/.github/workflows/compatibility_test.yaml index 048cd37..97fd4fd 100644 --- a/.github/workflows/compatibility_test.yaml +++ b/.github/workflows/compatibility_test.yaml @@ -9,7 +9,7 @@ jobs: compatibility_test: strategy: matrix: - distribution: [ubuntu, debian] + distribution: [ubuntu, debian, fedora, manjaro] runs-on: ubuntu-latest steps: - name: Checkout diff --git a/test/Dockerfile.fedora b/test/Dockerfile.fedora new file mode 100644 index 0000000..2ee4652 --- /dev/null +++ b/test/Dockerfile.fedora @@ -0,0 +1,3 @@ +FROM fedora:latest +RUN dnf install -y \ + util-linux diff --git a/test/Dockerfile.manjaro b/test/Dockerfile.manjaro new file mode 100644 index 0000000..20efcef --- /dev/null +++ b/test/Dockerfile.manjaro @@ -0,0 +1 @@ +FROM manjarolinux/build-stable diff --git a/test/Dockerfile.ubuntu b/test/Dockerfile.ubuntu new file mode 100644 index 0000000..b5743c9 --- /dev/null +++ b/test/Dockerfile.ubuntu @@ -0,0 +1,4 @@ +FROM ubuntu:latest +RUN apt-get update && apt-get install -y \ + curl \ + bsdextrautils