Replace one deprecated call #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } |