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
77
.github/workflows/main.yml
vendored
77
.github/workflows/main.yml
vendored
|
@ -8,55 +8,58 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [windows-latest, ubuntu-latest]
|
os: [windows-latest, ubuntu-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
- uses: actions/setup-python@v1
|
- uses: actions/setup-python@v1
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: "3.x"
|
||||||
|
|
||||||
- name: Install tools (Linux)
|
- name: Install tools (Linux)
|
||||||
if: startsWith(runner.os, 'Linux')
|
if: startsWith(runner.os, 'Linux')
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install python3-setuptools python3-wheel python3-pip
|
sudo apt-get install python3-setuptools python3-wheel python3-pip
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Install conan (Linux)
|
- name: Install conan (Linux)
|
||||||
if: startsWith(runner.os, 'Linux')
|
if: startsWith(runner.os, 'Linux')
|
||||||
run: |
|
run: |
|
||||||
sudo pip3 install conan --upgrade
|
sudo pip3 install conan --upgrade
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Install conan (Windows)
|
- name: Install conan (Windows)
|
||||||
if: startsWith(runner.os, 'Windows')
|
if: startsWith(runner.os, 'Windows')
|
||||||
run: |
|
run: |
|
||||||
pip3 install conan --upgrade
|
pip3 install conan --upgrade
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Create Build Environment
|
- name: Create Build Environment
|
||||||
run: cmake -E make_directory ${{runner.workspace}}/build
|
run: cmake -E make_directory ${{runner.workspace}}/build
|
||||||
|
|
||||||
- name: Install conan dependencies
|
- name: Install conan profile
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
run: conan profile new default --detect && conan install $GITHUB_WORKSPACE --build missing
|
run: conan profile new default --detect
|
||||||
|
|
||||||
- name: Configure CMake
|
- name: Install conan dependencies
|
||||||
shell: bash
|
working-directory: ${{runner.workspace}}/build
|
||||||
working-directory: ${{runner.workspace}}/build
|
run: conan install $GITHUB_WORKSPACE --build missing
|
||||||
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
|
|
||||||
|
|
||||||
- name: Build
|
- name: Configure CMake
|
||||||
working-directory: ${{runner.workspace}}/build
|
shell: bash
|
||||||
shell: bash
|
working-directory: ${{runner.workspace}}/build
|
||||||
run: cmake --build . --config $BUILD_TYPE
|
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
|
||||||
|
|
||||||
- name: Test
|
- name: Build
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make tests && ./tests
|
run: cmake --build . --config $BUILD_TYPE
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
working-directory: ${{runner.workspace}}/build
|
||||||
|
shell: bash
|
||||||
|
run: make tests && ./tests
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue