Skip to content

Commit

Permalink
Update c-cpp.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-marian authored May 22, 2024
1 parent 983f58f commit 5340ee1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ jobs:
uses: actions/checkout@v4

- name: Set up dependencies
run: sudo apt-get install -y autoconf
run: sudo apt-get install -y autoconf automake

- name: Check for configure.ac
run: |
if [ ! -f configure.ac ]; then
echo "Error: configure.ac not found!"
exit 1
fi
- name: Generate configure script
run: autoconf
Expand Down

0 comments on commit 5340ee1

Please sign in to comment.