-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/574-scope-based-resource-management
# Conflicts: # examples/conan_test_package/my_log_writer_activator.c # examples/conan_test_package/test_http_admin_activator.c # libs/framework/CMakeLists.txt # libs/utils/CMakeLists.txt
- Loading branch information
Showing
136 changed files
with
1,459 additions
and
923 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,71 @@ | ||
name: Conan Create | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
|
||
ubuntu-build: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
compiler: [ [gcc,g++], [clang,clang++] ] | ||
type: [ Debug ] | ||
timeout-minutes: 120 | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3.3.0 | ||
- name: Install build dependencies | ||
run: | | ||
sudo pip install -U conan==1.59.0 | ||
sudo apt-get install -yq --no-install-recommends ninja-build | ||
- name: Setup Conan Profile | ||
env: | ||
CC: ${{ matrix.compiler[0] }} | ||
CXX: ${{ matrix.compiler[1] }} | ||
run: | | ||
# build profile | ||
conan profile new release --detect | ||
conan profile update settings.build_type=Release release | ||
#Note no backwards compatiblity for gcc5 needed, setting libcxx to c++11. | ||
conan profile update settings.compiler.libcxx=libstdc++11 release | ||
conan profile show release | ||
# host profile | ||
conan profile new default --detect | ||
conan profile update settings.build_type=${{ matrix.type }} default | ||
#Note no backwards compatiblity for gcc5 needed, setting libcxx to c++11. | ||
conan profile update settings.compiler.libcxx=libstdc++11 default | ||
conan profile show default | ||
- name: Create Celix | ||
env: | ||
CC: ${{ matrix.compiler[0] }} | ||
CXX: ${{ matrix.compiler[1] }} | ||
CONAN_CMAKE_GENERATOR: Ninja | ||
run: | | ||
conan inspect . -a options | awk 'BEGIN { FS="[\t:]+" } /build/ && !/build_all/ { print $1}' | while read option; do conan create . -b missing -o celix:${option}=True -pr:b release -pr:h default -tf examples/conan_test_package -tbf test-build -o celix:celix_cxx17=True -o celix:celix_install_deprecated_api=True --require-override=libcurl/7.64.1 --require-override=openssl/1.1.1s --require-override=zlib/1.2.13 || exit 1; done | ||
mac-build: | ||
runs-on: macOS-11 | ||
timeout-minutes: 120 | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3.3.0 | ||
- name: Install build dependencies | ||
run: | | ||
brew install python ninja | ||
pip3 install -U conan==1.59.0 | ||
- name: Setup Conan Profile | ||
run: | | ||
conan profile new default --detect | ||
conan profile update settings.build_type=Release default | ||
- name: Create Celix | ||
env: | ||
CC: ${{ matrix.compiler[0] }} | ||
CXX: ${{ matrix.compiler[1] }} | ||
CONAN_CMAKE_GENERATOR: Ninja | ||
run: | | ||
conan inspect . -a options | awk 'BEGIN { FS="[\t:]+" } /build/ && !/build_all/ { print $1}' | while read option; do conan create . -b missing -o celix:${option}=True -pr:b default -pr:h default -tf examples/conan_test_package -tbf test-build -o celix:celix_cxx17=True -o celix:celix_install_deprecated_api=True --require-override=libcurl/7.64.1 --require-override=openssl/1.1.1s --require-override=zlib/1.2.13 || exit 1; done |
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 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 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 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 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 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 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 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 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 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
File renamed without changes.
File renamed without changes.
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 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 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 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 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
Oops, something went wrong.