mirror of
https://github.com/arun11299/cpp-jwt.git
synced 2025-05-15 01:08:31 +00:00
ci: fix windows build
This commit is contained in:
parent
d4b5525eb9
commit
72c26dda67
1 changed files with 40 additions and 37 deletions
9
.github/workflows/main.yml
vendored
9
.github/workflows/main.yml
vendored
|
@ -8,7 +8,6 @@ env:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
|
@ -19,7 +18,7 @@ jobs:
|
|||
|
||||
- uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: '3.x'
|
||||
python-version: "3.x"
|
||||
|
||||
- name: Install tools (Linux)
|
||||
if: startsWith(runner.os, 'Linux')
|
||||
|
@ -42,9 +41,13 @@ jobs:
|
|||
- name: Create Build Environment
|
||||
run: cmake -E make_directory ${{runner.workspace}}/build
|
||||
|
||||
- name: Install conan profile
|
||||
working-directory: ${{runner.workspace}}/build
|
||||
run: conan profile new default --detect
|
||||
|
||||
- name: Install conan dependencies
|
||||
working-directory: ${{runner.workspace}}/build
|
||||
run: conan profile new default --detect && conan install $GITHUB_WORKSPACE --build missing
|
||||
run: conan install $GITHUB_WORKSPACE --build missing
|
||||
|
||||
- name: Configure CMake
|
||||
shell: bash
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue