File tree 3 files changed +12
-7
lines changed
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -47,22 +47,27 @@ jobs:
47
47
with :
48
48
python-version : 3.8
49
49
50
+ - name : Set env vars
51
+ run : |
52
+ echo "CC=${{ matrix.compiler }}-${{ matrix.version }}" >> $GITHUB_ENV
53
+ if [ "${{ matrix.compiler }}" == "clang" ]; then
54
+ echo "CXX=clang++-${{ matrix.version }}" >> $GITHUB_ENV
55
+ else
56
+ echo "CXX=g++-${{ matrix.version }}" >> $GITHUB_ENV
57
+ fi
58
+
50
59
- name : Install
51
60
run : |
52
- python -m pip install cmake==3.17.3 conan==1.28 .1 --upgrade
61
+ python -m pip install cmake==3.22.2 conan==1.44 .1 --upgrade
53
62
54
63
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
55
64
sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-10 main' -y
56
65
sudo apt update
57
66
58
67
if [ "${{ matrix.compiler }}" = "gcc" ]; then
59
68
sudo apt-get install -y g++-${{ matrix.version }} g++-${{ matrix.version }}-multilib
60
- echo "::set-env name=CC::gcc-${{ matrix.version }}"
61
- echo "::set-env name=CXX::g++-${{ matrix.version }}"
62
69
else
63
70
sudo apt-get install -y clang-${{ matrix.version }} clang-tidy-${{ matrix.version }} g++-multilib
64
- echo "::set-env name=CC::clang-${{ matrix.version }}"
65
- echo "::set-env name=CXX::clang++-${{ matrix.version }}"
66
71
fi
67
72
68
73
- name : Install dependencies (system)
Original file line number Diff line number Diff line change 38
38
39
39
- name : Install
40
40
run : |
41
- python -m pip install cmake==3.17.3 conan==1.28 .1 --upgrade
41
+ python -m pip install cmake==3.22.2 conan==1.44 .1 --upgrade
42
42
conan profile new default --detect --force
43
43
mkdir -p build && cd build
44
44
conan install .. --build=missing -s arch=${{ matrix.conan_arch }} -s build_type=${{ matrix.type }}
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ inline boost::future<void> wamp_session::stop()
121
121
}
122
122
123
123
if (!m_transport) {
124
- m_session_start .set_exception (boost::copy_exception (no_transport_error ()));
124
+ m_session_stop .set_exception (boost::copy_exception (no_transport_error ()));
125
125
return ;
126
126
}
127
127
You can’t perform that action at this time.
0 commit comments