You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
404 B
YAML

---
image: rust
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
build-tesseract:
stage: build
script:
- git clone --recursive https://github.com/kornelski/pngquant.git
- cd pngquant
- cargo build --release --features=lcms2-static,png-static,z-static,static
artifacts:
paths:
- "pngquant/target/release/pngquant"
when: on_success
expire_in: 1 days