Updated wheel release mechanism #125
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 Tick on OSX | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
MKN_COMPILE_THREADS: 2 | |
MKN_LIB_LINK_LIB: 1 | |
MKN_PYTHON_LIB_EMBED: 1 | |
KLOG: 3 | |
jobs: | |
build: | |
name: Python ${{ matrix.python-version }} | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 4 | |
matrix: | |
python-version: ['3.11'] | |
# python-version: ['3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: info | |
run: | | |
python3 -V | |
clang -v | |
swig -version | |
- name: pip | |
run: | | |
python3 -m pip install wheel pip --upgrade | |
python3 -m pip install -r requirements.txt | |
- name: build | |
run: | | |
curl -Lo mkn https://github.com/mkn/mkn/releases/download/latest/mkn_osx | |
chmod +x mkn | |
./mkn -C lib build -g 0 -dtOa "-fPIC -std=c++17" | |
- name: cpptest | |
run: | | |
./mkn -C lib -p gtest build -Ota "-fPIC -std=c++17" -d + | |
export PATH=$PWD:$PATH ./sh/gtest.sh | |
- name: pytest | |
run: | | |
echo "Tests not run until test failures assessed./" | |
# python -m unittest discover -v . "*_test.py" |