Skip to content

Use semaphores for thread synchronization #23

Use semaphores for thread synchronization

Use semaphores for thread synchronization #23

Workflow file for this run

name: Build and test termux-elf-cleaner
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
ref: ${{ env.GITHUB_REF }}
- name: Prepare
run: |
autoreconf -vfi
mkdir build
- name: Configure
run: |
cd build
../configure
- name: Make
run: |
cd build
make
- name: Test
run: |
cd build
make check