Skip to content

Weekly Build (dev)

Weekly Build (dev) #40

Workflow file for this run

name: Weekly Build (dev)
on:
schedule:
# weekly at 0300 PST/1000 UTC on Sunday
- cron: '0 10 * * 0'
# commented out till 3.13
# workflow_dispatch:
jobs:
build_posix:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 2
matrix:
os: [ubuntu-latest, macos-latest]
version: ["3.13-dev"]
steps:
- uses: actions/checkout@v4
- name: set up python ${{ matrix.version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
- name: get friendly (for nox) python version
# not super friendly looking, but easy way to get major.minor version so we can easily exec only the specific
# version we are targeting with nox, while still having versions like 3.9.0a4
run: |
echo "FRIENDLY_PYTHON_VERSION=$(python -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')")" >> $GITHUB_ENV
- name: setup test env
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install nox
- name: run nox
# TERM is needed needed to make the terminal a tty (i think? without this system ssh is super broken)
# libssh2/ssh2-python were getting libssh2 linked incorrectly/weirdly and libraries were trying to be loaded
# from the temp dir that pip used for installs. setting the DYLD_LIBRARY_PATH envvar seems to solve this -- note
# that if brew macos packages get updated on runners this may break again :)
run: TERM=xterm DYLD_LIBRARY_PATH=/opt/homebrew/Cellar/libssh2/1.11.0_1/lib python -m nox -p $FRIENDLY_PYTHON_VERSION -k "not darglint"