Updated wheel release mechanism #211
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 Ubuntu | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
MKN_COMPILE_THREADS: 2 | |
MKN_GCC_PREFERRED: 1 | |
KLOG: 3 | |
jobs: | |
build: | |
name: Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 4 | |
matrix: | |
python-version: ['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 | |
gcc -v | |
swig -version | |
- name: pip # tensorflow not released for 3.12 as of 26-OCT-2023 | |
run: | | |
python3 -V | |
python3 -m pip install -U pip | |
python3 -m pip install -U build twine wheel setuptools | |
python3 -m pip install -U -r requirements.txt | |
[ "${{ matrix.python-version }}" != "3.12" ] && python3 -m pip install tensorflow-cpu | |
- name: build | |
run: | | |
curl -Lo mkn https://github.com/mkn/mkn/releases/download/latest/mkn_nix | |
chmod +x mkn | |
./mkn -C lib build -g 0 -dtOa "-fPIC -std=c++17" | |
- name: cpptest | |
run: | | |
chmod +x sh/gtest_all.sh | |
PATH=$PWD:$PATH ./sh/gtest_all.sh "-fPIC -std=c++17" | |
- name: pytest | |
run: chmod +x sh/pytest.sh && ./sh/pytest.sh |