File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 53
53
sudo apt update
54
54
sudo apt install -y ninja-build ${{ matrix.additional-dep }}
55
55
- name : Make sure the library compiles with Conan
56
- run : conan build . --build=missing -s compiler.cppstd=gnu20 -o & :with_cbor=True -o & :with_flatbuffers=True -o & :with_msgpack=True -o & :with_toml=True -o & :with_ubjson=True -o & :with_xml=True -o & :with_yaml=True
56
+ run : conan build . --build=missing -s compiler.cppstd=gnu20 -o * :with_cbor=True -o * :with_flatbuffers=True -o * :with_msgpack=True -o * :with_toml=True -o * :with_ubjson=True -o * :with_xml=True -o * :with_yaml=True
57
57
- name : Compile
58
58
run : |
59
59
if [[ "${{ matrix.compiler }}" == "llvm" ]]; then
Original file line number Diff line number Diff line change 44
44
env :
45
45
CC : clang
46
46
CXX : clang++
47
- run : conan build . --build=missing -s compiler.cppstd=gnu20 -o & :with_cbor=True -o & :with_flatbuffers=True -o & :with_msgpack=True -o & :with_toml=True -o & :with_ubjson=True -o & :with_xml=True -o & :with_yaml=True
47
+ run : conan build . --build=missing -s compiler.cppstd=gnu20 -o * :with_cbor=True -o * :with_flatbuffers=True -o * :with_msgpack=True -o * :with_toml=True -o * :with_ubjson=True -o * :with_xml=True -o * :with_yaml=True
48
48
- name : Compile
49
49
env :
50
50
CC : clang
Original file line number Diff line number Diff line change 28
28
- name : Create default profile
29
29
run : conan profile detect
30
30
- name : Make sure the library compiles with Conan
31
- run : conan build . --build=missing -s compiler.cppstd=gnu20 -o & :with_cbor=True -o & :with_flatbuffers=True -o & :with_msgpack=True -o & :with_toml=True -o & :with_ubjson=True -o & :with_xml=True -o & :with_yaml=True
31
+ run : conan build . --build=missing -s compiler.cppstd=gnu20 -o * :with_cbor=True -o * :with_flatbuffers=True -o * :with_msgpack=True -o * :with_toml=True -o * :with_ubjson=True -o * :with_xml=True -o * :with_yaml=True
32
32
- name : Compile
33
33
run : |
34
34
cmake -S . -B build -DREFLECTCPP_BUILD_TESTS=ON -DREFLECTCPP_BUILD_BENCHMARKS=ON -DREFLECTCPP_BSON=ON -DREFLECTCPP_CBOR=ON -DREFLECTCPP_FLEXBUFFERS=ON -DREFLECTCPP_MSGPACK=ON -DREFLECTCPP_XML=ON -DREFLECTCPP_TOML=ON -DREFLECTCPP_YAML=ON -DCMAKE_BUILD_TYPE=Release
Original file line number Diff line number Diff line change @@ -93,5 +93,5 @@ You can call `conan inspect .` to get an overview of the supported options.
93
93
So, if you want XML and YAML support as well, you can call the following:
94
94
95
95
``` bash
96
- conan build . --build=missing -s compiler.cppstd=gnu20 -o & :with_xml=True -o & :with_yaml=True
96
+ conan build . --build=missing -s compiler.cppstd=gnu20 -o * :with_xml=True -o * :with_yaml=True
97
97
```
You can’t perform that action at this time.
0 commit comments