File: ubuntu.yml

package info (click to toggle)
webp-pixbuf-loader 0.2.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,132 kB
  • sloc: ansic: 1,194; makefile: 9
file content (23 lines) | stat: -rw-r--r-- 587 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: WebP Pixbuf CI [Ubuntu]

on:
  push:
    branches:
      - mainline
  pull_request:
    branches:
      - mainline

jobs:
  Build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: sudo apt update
      - run: sudo apt install ninja-build meson libwebp-dev libgdk-pixbuf2.0-dev valgrind
      - run: mkdir build
      - run: meson build
      - run: ninja -C build
      - run: ninja -C build scan-build
      - run: meson test -C build --print-errorlogs
      - run: meson test -C build --wrapper 'valgrind --leak-check=full --error-exitcode=1'