-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from theodelrieu/fix/include_license_in_release
Fix/include license in release
- Loading branch information
Showing
4 changed files
with
22 additions
and
13 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ on: | |
- pull_request | ||
|
||
env: | ||
CONAN_VERSION: 1.21.0 | ||
CONAN_VERSION: 1.32.0 | ||
PATH_VERSION: 13.1.0 | ||
|
||
jobs: | ||
|
@@ -15,7 +15,9 @@ jobs: | |
compiler: [clang++-3.9, clang++-4.0, clang++-5.0, clang++-6.0, g++-5, g++-6, g++-7, g++-8] | ||
steps: | ||
- name: Setup Python environment | ||
uses: actions/[email protected] | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Checkout repository | ||
uses: actions/checkout@v1 | ||
- name: Install conan and path | ||
|
@@ -32,7 +34,9 @@ jobs: | |
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Setup Python environment | ||
uses: actions/[email protected] | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Checkout repository | ||
uses: actions/checkout@v1 | ||
- name: Install conan and path | ||
|
@@ -47,15 +51,17 @@ jobs: | |
runs-on: macos-latest | ||
steps: | ||
- name: Setup Python environment | ||
uses: actions/[email protected] | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Install conan and path | ||
run: pip install conan==$CONAN_VERSION path==$PATH_VERSION --user | ||
- name: Checkout repository | ||
uses: actions/checkout@v1 | ||
- name: Install build tools | ||
run: brew install ninja | ||
- name: Build and test | ||
run: python $GITHUB_WORKSPACE/ci/run-ci.py build-and-test --profile $GITHUB_WORKSPACE/ci/conan-profiles/macos10.15 | ||
run: python $GITHUB_WORKSPACE/ci/run-ci.py build-and-test --profile $GITHUB_WORKSPACE/ci/conan-profiles/macos11 | ||
build-windows: | ||
runs-on: windows-latest | ||
strategy: | ||
|
@@ -69,7 +75,9 @@ jobs: | |
|
||
steps: | ||
- name: Setup Python environment | ||
uses: actions/[email protected] | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Install conan and path | ||
run: pip install conan==$env:CONAN_VERSION path==$env:PATH_VERSION --user | ||
- name: Checkout repository | ||
|
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
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
include(macos) | ||
[settings] | ||
os.version=11.0 | ||
compiler.version=12.0 |