Reshuffle folder structure
Reshuffle folder structure and update cmake.yml
This commit is contained in:
13
.github/workflows/cmake.yml
vendored
13
.github/workflows/cmake.yml
vendored
@@ -21,11 +21,6 @@ jobs:
|
||||
matrix:
|
||||
os: [windows-latest, ubuntu-latest]
|
||||
BUILD_TYPE: [Debug, Release]
|
||||
include:
|
||||
- os: windows-latest
|
||||
- BOOTSTRAP: bootstrap-vcpkg.bat
|
||||
- os: ubuntu-latest
|
||||
- BOOTSTRAP: bootstrap-vcpkg.sh
|
||||
|
||||
steps:
|
||||
- name: checkout
|
||||
@@ -33,8 +28,12 @@ jobs:
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: bootstrap-vcpkg
|
||||
run: ${{github.workspace}}/external/vcpkg/${{matrix.BOOTSTRAP}}
|
||||
- name: bootstrap vcpkg
|
||||
if: runner.os == 'windows'
|
||||
run: ${{github.workspace}}/external/vcpkg/bootstrap-vcpkg.bat -disableMetrics
|
||||
|
||||
if: runner.os != 'windows'
|
||||
run: ${{github.workspace}}/external/vcpkg/bootstrap-vcpkg.sh -disableMetrics
|
||||
|
||||
- name: Configure CMake
|
||||
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
||||
|
||||
Reference in New Issue
Block a user