Skip to content

Remove another call to deprecated gimp_drawable_detach #19

Remove another call to deprecated gimp_drawable_detach

Remove another call to deprecated gimp_drawable_detach #19

Workflow file for this run

name: build-check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install_dependencies
# Attempt to fix 'unable to fetch some archives' failures during this step
run: sudo apt update && sudo apt install libgimp2.0-dev meson
- name: build
run: |
meson setup build
cd build
# For Ubuntu 20.04:
ninja
# For newest Ubuntu:
# meson compile
ls texturize && \
{ echo "texturize found. SUCCESS."; } || \
{ echo "texturize not found"; exit 1; }