We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 847c465 commit d31db45Copy full SHA for d31db45
1 file changed
.github/workflows/python.yml
@@ -28,13 +28,13 @@ jobs:
28
run: |
29
cmake -B ${{github.workspace}}/build \
30
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
31
- -DCMAKE_C_FLAGS="-fPIC" \
32
- -DCMAKE_CXX_FLAGS="-fPIC"
33
- cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
34
- cd libCacheSim-python
+ -DBUILD_PYTHON_BINDING=ON \
+ -DENABLE_PIC=ON
+ cmake --build ${{github.workspace}}/build
+ cd ${{github.workspace}}/libCacheSim-python
35
pip install -e . --no-build-isolation
36
37
- name: Run tests
38
39
40
pytest tests/
0 commit comments