.github/workflows/windows.yml: upgrade setuptools for python 3.10/3.1… #261
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: Linux | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build-gcc: | |
runs-on: ubuntu-latest | |
env: | |
CC: ${{ matrix.cc }} | |
CXX: ${{ matrix.cxx }} | |
strategy: | |
matrix: | |
include: | |
- cc: gcc-10 | |
cxx: g++-10 | |
- cc: gcc-11 | |
cxx: g++-11 | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install GCC 11 | |
if: ${{ matrix.cc == 'gcc-11' }} | |
run: | | |
sudo apt-get update | |
sudo apt-get install g++-11 -y | |
- name: Print compiler version | |
run: ${{ env.CC }} --version | |
- name: Install zimg | |
run: | | |
git clone https://github.com/sekrit-twc/zimg --branch v3.0 --depth 1 | |
pushd zimg | |
./autogen.sh | |
./configure --prefix=/usr | |
make -j2 | |
sudo make install -j2 | |
popd | |
rm -rf zimg | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
# Version range or exact version of a Python version to use, using SemVer's version range syntax. | |
python-version: 3.9 | |
- name: Install cython | |
run: | | |
python -m pip install --upgrade pip | |
pip install cython | |
- name: Set PKG_CONFIG_PATH | |
run: echo "PKG_CONFIG_PATH=$pythonLocation/lib/pkgconfig" >> $GITHUB_ENV | |
- name: configure | |
run: | | |
./autogen.sh | |
./configure --prefix=/usr | |
- name: make | |
run: make -j2 | |
- name: make install | |
run: | | |
sudo make install -j2 | |
python setup.py install | |
- name: Run test | |
run: python -m unittest discover -s test -p "*test.py" |