comparison mupdf-source/thirdparty/gumbo-parser/.travis.yml @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 language: c++
2
3 compiler:
4 - gcc
5 - clang
6
7 os:
8 - linux
9 - osx
10
11 install:
12 - wget 'https://googletest.googlecode.com/files/gtest-1.7.0.zip'
13 - unzip gtest-1.7.0.zip
14 - ln -s gtest-1.7.0 gtest
15 - sudo pip install BeautifulSoup
16 - sudo pip install html5lib==0.95
17
18 script:
19 - ./autogen.sh && ./configure && make && make check
20 - python python/gumbo/gumboc_test.py
21 - python python/gumbo/html5lib_adapter_test.py
22 - python python/gumbo/soup_adapter_test.py
23 - sudo make install
24 - g++ examples/clean_text.cc `pkg-config --cflags --libs gumbo`
25 - sudo python setup.py sdist install
26 - python -c 'import gumbo; gumbo.parse("Foo")'