Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
dean0x7d committed Jun 13, 2024
1 parent 2cb3466 commit 8ef1218
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/test_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
embedded-py: [3.11.5, 3.12.4]
os: [windows-latest]
embedded-py: [3.12.4]
conan:
- version: 1
args: lumicks/testing --build=missing
Expand Down Expand Up @@ -39,11 +39,8 @@ jobs:
conan profile detect
- name: Test core
run: conan create ./core ${{ matrix.conan.args }} -o embedded_python-core/*:version=${{ matrix.embedded-py }}
- name: Test baseline
run: ${{ env.create_pck }}
- name: Test with numpy env
run: ${{ env.create_pck }} -o test_embedded_python/*:env=numpy
- name: Test with nbconvert env
run: ${{ env.create_pck }} -o test_embedded_python/*:env=nbconvert
- name: Test with pylake env
run: ${{ env.create_pck }} -o test_embedded_python/*:env=pylake
- if: always()
uses: actions/upload-artifact@v4
with:
name: "${{ matrix.os }}-${{ matrix.embedded-py }}-${{ matrix.conan.version }}"
path: core/test_package
1 change: 1 addition & 0 deletions core/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class EmbeddedPythonCore(ConanFile):
"zip_stdlib": "stored",
}
exports_sources = "embedded_python_tools.py", "embedded_python-core.cmake"
package_type = "shared-library"

def validate(self):
minimum_python = "3.11.5"
Expand Down

0 comments on commit 8ef1218

Please sign in to comment.