From 461cf8d6cd0550cd32f5c2a1234f077c67765008 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sat, 3 Feb 2024 21:57:10 +0100 Subject: [PATCH] ci: Replace Travis with GitHub Actions Travis got disabled and re-enabling it requires jumping through hoops. --- .github/workflows/test.yaml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 00000000..80b3b48a --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,37 @@ +name: Test + +on: + - push + - pull_request + +jobs: + linux: + name: Linux + runs-on: ubuntu-22.04 + strategy: + matrix: + configureFlags: + - "" + - "--with-introspection" + - "--with-gegl" + include: + - configureFlags: "--with-introspection" + extraDeps: "libgirepository1.0-dev" + - configureFlags: "--with-gegl" + extraDeps: "libgegl-dev" + steps: + - uses: actions/checkout@v4 + - name: "Install dependencies" + run: | + sudo apt-get update + sudo apt-get install -y \ + libjson-c-dev \ + intltool \ + ${{ matrix.extraDeps }} + - name: "Build" + run: | + ./autogen.sh + ./configure ${{ matrix.configureFlags }} + make + - name: "Run tests" + run: make distcheck