Fix occ tests #45
This file contains hidden or 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: Workflow | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| jobs: | |
| test: | |
| name: Test on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ['ubuntu-latest', 'windows-latest'] | |
| steps: | |
| - name: "Download" | |
| uses: actions/checkout@v5 | |
| - name: "Install OpenGL" | |
| if: ${{ matrix.os == 'ubuntu-latest' }} | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get -q -y install libegl-dev libglx-dev libxi-dev | |
| - name: "Create environment" | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-file: environment.yml | |
| cache-environment: true | |
| - name: "Install declaracad" | |
| shell: bash -l {0} | |
| run: | | |
| python -m pip install -e . | |
| python -m pip install pytest pytest-qt flake8 isort black mypy | |
| - name: "Run tests" | |
| shell: bash -l {0} | |
| env: | |
| QT_QPA_PLATFORM: offscreen | |
| run: python -m pytest tests | |
| build: | |
| name: Build on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| needs: test | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ['ubuntu-latest', 'windows-latest'] | |
| steps: | |
| - name: "Download" | |
| uses: actions/checkout@v5 | |
| - name: "Install OpenGL" | |
| if: ${{ matrix.os == 'ubuntu-latest' }} | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get -q -y install libegl-dev libglx-dev libxi-dev | |
| - name: "Create environment" | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-file: environment.yml | |
| cache-environment: true | |
| - name: "Install declaracad" | |
| shell: bash -l {0} | |
| run: | | |
| python -m pip install -e . | |
| python -m pip install cx-freeze | |
| - name: "Build dist" | |
| if: ${{ matrix.os == 'ubuntu-latest' }} | |
| shell: bash -l {0} | |
| run: python release.py bdist | |
| - name: "Build msi" | |
| if: ${{ matrix.os == 'windows-latest' }} | |
| shell: bash -l {0} | |
| run: python release.py bdist_msi | |
| - name: "Upload package" | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: declaracad-${{ matrix.os }} | |
| path: dist/declaracad-* |