-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing boost fetch before build Signed-off-by: Oleg Vorobiov <[email protected]>
- Loading branch information
Oleg Vorobiov
committed
Aug 4, 2022
1 parent
13a5af4
commit d9e0b3e
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: "Set up conan" | ||
description: "Set up conan using pip" | ||
runs: | ||
using: "composite" | ||
steps: | ||
# Disabled, because composite run steps don't support "using" yet | ||
# - name: set up python | ||
# uses: actions/setup-python@v1 | ||
# with: | ||
# python-version: '3.x' | ||
|
||
- name: install conan | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install --upgrade conan | ||
shell: bash | ||
|
||
- name: setup conan profile | ||
run: | | ||
conan profile new default --detect | ||
conan profile show default | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters