Skip to content

Commit d31db45

Browse files
committed
Fix CI
1 parent 847c465 commit d31db45

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/python.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
run: |
2929
cmake -B ${{github.workspace}}/build \
3030
-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
31+
-DBUILD_PYTHON_BINDING=ON \
32+
-DENABLE_PIC=ON
33+
cmake --build ${{github.workspace}}/build
34+
cd ${{github.workspace}}/libCacheSim-python
3535
pip install -e . --no-build-isolation
3636
3737
- name: Run tests
3838
run: |
39-
cd libCacheSim-python
39+
cd ${{github.workspace}}/libCacheSim-python
4040
pytest tests/

0 commit comments

Comments
 (0)