-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (36 loc) · 1.67 KB
/
pre_release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Weekly Build (dev)
on:
schedule:
# weekly at 0300 PST/1000 UTC on Sunday
- cron: '0 10 * * 0'
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 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 PRE_RELEASE=1 python -m nox -p $FRIENDLY_PYTHON_VERSION -k "not darglint"