chore: update elf.h file from glibc and fix DT_VERNEED typo #37
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 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 |