perf(socket): improve sockopt_set_ipv6_membership
#574
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
name: build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
include: | |
- lua: lua5.3 | |
name: lua5.3 | |
pkg: liblua5.3-dev | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: build | |
env: | |
name: ${{ matrix.name }} | |
pkg: ${{ matrix.pkg }} | |
run: | | |
sudo apt install -y libev-dev libjson-c-dev libssl-dev libmnl-dev $pkg | |
git clone https://git.openwrt.org/project/libubox.git | |
git clone https://git.openwrt.org/project/ubus.git | |
cd libubox && cmake . -DBUILD_LUA=OFF && sudo make install && cd .. | |
cd ubus && cmake . -DBUILD_LUA=OFF && sudo make install && cd .. | |
cmake . && make && sudo make install |