Cache error_text()
instead of check_error()
#76
Workflow file for this run
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 and test wheels osx/amd64 | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
osx-build: | |
name: Build wheel for OSX | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare snap7 archive | |
uses: ./.github/actions/prepare_snap7 | |
- name: Prepare files | |
run: | | |
cp .github/build_scripts/arm64_osx.mk snap7-full-1.4.2/build/osx/ | |
pushd snap7-full-1.4.2/build/osx/ | |
make -f x86_64_osx.mk all | |
make -f arm64_osx.mk all | |
lipo -create -output /usr/local/lib/libsnap7.dylib ../bin/x86_64-osx/libsnap7.dylib ../bin/arm64-osx/libsnap7.dylib | |
install_name_tool -id /usr/local/lib/libsnap7.dylib /usr/local/lib/libsnap7.dylib | |
popd | |
mkdir -p snap7/lib/ | |
cp /usr/local/lib/libsnap7.dylib snap7/lib/ | |
- name: Build wheel | |
run: | | |
python3 -m build . --wheel -C="--build-option=--plat-name=macosx_10_9_universal2" | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist/*.whl | |
osx-test: | |
name: Testing wheels for OSX | |
needs: osx-build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["macos-13", "macos-14", "macos-15"] | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Install python-snap7 | |
run: | | |
python3 -m venv venv | |
venv/bin/pip install --upgrade pip | |
venv/bin/pip install pytest | |
venv/bin/pip install dist/*.whl | |
- name: Run tests | |
run: | | |
venv/bin/pytest -m "server or util or client or mainloop" | |
sudo venv/bin/pytest -m partner |