Skip to content

Commit

Permalink
[wip]
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoferigo committed Jun 29, 2021
1 parent 5a3f611 commit a8f0141
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
run: |
cmake \
-S . \
-S scenario/ \
-B build \
-GNinja \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
Expand All @@ -91,7 +91,7 @@ jobs:
if: contains(matrix.os, 'windows')
run: |
cmake \
-S . \
-S scenario \
-B build/ \
-G"Visual Studio 16 2019" \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
Expand All @@ -101,10 +101,13 @@ jobs:
- name: Build
run: cmake --build build/ --config ${{ matrix.build_type }}

- name: Install
- name: Install C++
run: cmake --build build/ --target install

- name: Install Python
run: |
cmake --build build/ --target install
pip install --no-deps -e .
pip install -e scenario
pip install -e .[test]
- name: Inspect Python ABI (core)
run: ldd /usr/share/miniconda/envs/ci/lib/python3.8/site-packages/scenario/bindings/_core.so
Expand All @@ -113,6 +116,4 @@ jobs:
run: ldd /usr/share/miniconda/envs/ci/lib/python3.8/site-packages/scenario/bindings/_gazebo.so

- name: Test
run: |
pip install gym-ignition-models
python -m pytest tests/
run: pytest tests/

0 comments on commit a8f0141

Please sign in to comment.