Fix potential memory leak of tev->e_list by reordering list_add before epoll_ctl #32
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: ci | |
on: [pull_request] | |
jobs: | |
build_ubuntu: | |
name: build on Ubuntu | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checking out | |
uses: actions/checkout@v3 | |
with: | |
path: tgt | |
- name: build | |
working-directory: tgt | |
run: | | |
make | |
build_alpine: | |
name: build on Alpine Linux | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checking out | |
uses: actions/checkout@v3 | |
with: | |
path: tgt | |
- name: Setup Alpine Linux | |
uses: jirutka/setup-alpine@v1 | |
- name: build | |
working-directory: tgt | |
run: | | |
make |