mirror of https://github.com/davisking/dlib.git
Fix GitHub actions on Windows because of CMake 3.25.0 (#2692)
This commit is contained in:
parent
01c7bfe880
commit
02330e0a15
|
@ -106,7 +106,10 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Configure
|
||||
run: cmake . -B ${{ env.build_dir }}
|
||||
run: |
|
||||
# don't use CMake 3.25.0 https://gitlab.kitware.com/cmake/cmake/-/issues/23975
|
||||
pip3 install cmake==3.24.0
|
||||
cmake . -B ${{ env.build_dir }}
|
||||
- name: Build just tests
|
||||
run: cmake --build ${{ env.build_dir }} --config ${{ env.config }} --target dtest --parallel 4
|
||||
- name: Test
|
||||
|
@ -119,7 +122,10 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Configure
|
||||
run: cmake . -B ${{ env.build_dir }}
|
||||
run: |
|
||||
# don't use CMake 3.25.0 https://gitlab.kitware.com/cmake/cmake/-/issues/23975
|
||||
pip3 install cmake==3.24.0
|
||||
cmake . -B ${{ env.build_dir }}
|
||||
- name: Build just tests
|
||||
run: cmake --build ${{ env.build_dir }} --config Debug --target dtest --parallel 4
|
||||
- name: Build ancillary tools
|
||||
|
|
|
@ -19,9 +19,13 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
- name: Install python deps
|
||||
run: pip install pytest numpy
|
||||
run: |
|
||||
pip install pytest numpy
|
||||
# don't use CMake 3.25.0 https://gitlab.kitware.com/cmake/cmake/-/issues/23975
|
||||
pip3 install cmake==3.24.0
|
||||
- name: Build
|
||||
run: |
|
||||
pip3 install cmake==3.24.0
|
||||
python setup.py build
|
||||
python setup.py install --user
|
||||
- name: Test
|
||||
|
|
Loading…
Reference in New Issue