File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed
Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -47,22 +47,27 @@ jobs:
4747 with :
4848 python-version : 3.8
4949
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+
5059 - name : Install
5160 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
5362
5463 wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
5564 sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-10 main' -y
5665 sudo apt update
5766
5867 if [ "${{ matrix.compiler }}" = "gcc" ]; then
5968 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 }}"
6269 else
6370 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 }}"
6671 fi
6772
6873 - name : Install dependencies (system)
Original file line number Diff line number Diff line change 3838
3939 - name : Install
4040 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
4242 conan profile new default --detect --force
4343 mkdir -p build && cd build
4444 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()
121121 }
122122
123123 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 ()));
125125 return ;
126126 }
127127
You can’t perform that action at this time.
0 commit comments