Fixed the build script on Windows #14
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: Python modules | |
on: | |
push: | |
branches: ["main", "devel"] | |
pull_request: | |
branches: ["main", "devel"] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ["3.9", "3.10", "3.11"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v3 | |
id: cache | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.*') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
# - name: Install dependencies | |
# run: | | |
# python -m pip install --upgrade pip build | |
# # python -m pip install -r partcad/requirements.txt | |
# # python -m pip install -r partcad-cli/requirements.txt | |
- name: Prepare environments | |
run: | | |
python -m pip install --upgrade pip build | |
mkdir .venv | |
python -m venv .venv/build | |
(. .venv/build/bin/activate && python -m pip install --upgrade pip build && deactivate) | |
python -m venv .venv/build-cli | |
(. .venv/build-cli/bin/activate && python -m pip install --upgrade pip build && deactivate) | |
python -m venv .venv/install | |
(. .venv/install/bin/activate && python -m pip install --upgrade pip build && deactivate) | |
- name: Test building and packaging | |
run: | | |
(. .venv/build/bin/activate && cd partcad && python -m build && deactivate) | |
(. .venv/build-cli/bin/activate && python -m pip install partcad/dist/partcad-[0-9].[0-9]*.[0-9]*-py3-none-any.whl && deactivate) | |
(. .venv/build-cli/bin/activate && cd partcad-cli && python -m build && deactivate) | |
- name: Test installation | |
run: | | |
(. .venv/install/bin/activate && python -m pip install partcad/dist/partcad-[0-9].[0-9]*.[0-9]*-py3-none-any.whl && deactivate) | |
(. .venv/install/bin/activate && python -m pip install partcad-cli/dist/partcad_cli-[0-9].[0-9]*.[0-9]*-py3-none-any.whl && deactivate) |