Skip to content

Commit

Permalink
Update cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
robbietu committed Jun 16, 2023
1 parent 56e6f63 commit da9d8f6
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,24 @@ jobs:

- name: get zmqlib
run: \
unzip zeromq-4.3.2.zip&&
cd zeromq-4.3.2.zip
mkdir build&&
cd build&&
cmake ..&&
make&&
sudo apt-get install -y unzip &&
unzip zeromq-4.3.2.zip &&
cd zeromq-4.3.2.zip &&
mkdir build &&
cd build &&
cmake .. &&
make &&
make install

- name: set up cppzmq
run: \
wget https://github.com/zeromq/cppzmq/archive/v4.6.0.zip&& \
unzip v4.6.0.zip&& \
cd 4.6.0&& \
mkdir build&& \
cd build&& \
cmake -DCPPZMQ_BUILD_TESTS=OFF ..&& \
make -j4 install&& \
wget https://github.com/zeromq/cppzmq/archive/v4.6.0.zip &&
unzip v4.6.0.zip &&
cd 4.6.0 &&
mkdir build &&
cd build &&
cmake -DCPPZMQ_BUILD_TESTS=OFF .. &&
make -j4 install &&

- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
Expand Down

0 comments on commit da9d8f6

Please sign in to comment.