Skip to content

Commit

Permalink
Test autotools
Browse files Browse the repository at this point in the history
  • Loading branch information
thommey committed Jun 16, 2024
1 parent ca4f9e8 commit 9875dc1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@ jobs:
run: sudo apt-get install build-essential autoconf
- name: Stage configure with revision removed
run: |
echo `find . -name configure`
for i in `find . -name configure`; do echo $i; sed -i 's/From configure.ac (.*)//' $i; git add $i; done
for i in `find . -name configure`; do sed -i 's/From configure.ac .*//' $i; git add $i; done
- name: Run autotools
run: misc/runautotools
- name: Remove configure revision again
run: |
for i in `find . -name configure`; do echo $i; sed -i 's/From configure.ac (.*)//' $i; done
for i in `find . -name configure`; do sed -i 's/From configure.ac .*//' $i; done
- name: Check diff
run: git diff

0 comments on commit 9875dc1

Please sign in to comment.