Update requirements: Bump zope-interface from 8.1.1 to 8.2 #425
Workflow file for this run
This file contains hidden or 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: OSX build/test workflow | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Build and test Thug (Python ${{ matrix.python-version }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] | |
| os: [macos-14] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| brew reinstall git autoconf libtool | |
| brew install automake graphviz tesseract libmagic | |
| ln -s $(which glibtoolize) /usr/local/bin/libtoolize | |
| pip install --upgrade pip setuptools wheel tox tox-gh-actions appdirs | |
| BUILD_LIB=1 pip install --use-pep517 ssdeep | |
| pip install --config-settings="--global-option=build_ext" --config-settings="--global-option=-I$(brew --prefix graphviz)/include/" --config-settings="--global-option=-L$(brew --prefix graphviz)/lib/" pygraphviz | |
| - name: Install libemu | |
| run: | | |
| git clone https://github.com/buffer/libemu.git | |
| cd libemu | |
| autoreconf -v -i | |
| ./configure | |
| sudo make install | |
| cd - | |
| - name: Install Thug configuration | |
| run: | | |
| sudo mkdir -p /etc/thug/ | |
| sudo cp -R thug/conf/* /etc/thug/ | |
| - name: Test Thug | |
| run: | | |
| sudo ln -s $(brew --prefix glib)/lib/libgobject-2.0.0.dylib /usr/local/lib/libgobject-2.0-0 | |
| sudo ln -s $(brew --prefix pango)/lib/libpango-1.0.dylib /usr/local/lib/pango-1.0-0 | |
| sudo ln -s $(brew --prefix harfbuzz)/lib/libharfbuzz.dylib /usr/local/lib/libharfbuzz-0 | |
| sudo ln -s $(brew --prefix fontconfig)/lib/libfontconfig.1.dylib /usr/local/lib/fontconfig-1 | |
| sudo ln -s $(brew --prefix pango)/lib/libpangoft2-1.0.0.dylib /usr/local/lib/pangoft2-1.0 | |
| tox |