Skip to content

Commit 1c31d9d

Browse files
add: autoreconf step
1 parent 76bc4a4 commit 1c31d9d

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,22 @@ jobs:
1515
- uses: actions/checkout@v4
1616

1717
# Clone the dependency repo (replace URL and branch/tag)
18-
- name: Clone dependency library
18+
- name: Clone dependency library libosal
1919
run: |
2020
git clone --depth 1 --branch release/0.1.0 https://github.com/robert-burger/libosal.git deps/libosal
2121
2222
# Optional: build or install the dependency if needed
23-
- name: Build dependency library
23+
- name: Build dependency library libosal
2424
run: |
2525
cd deps/libosal
2626
autoreconf -i -f
2727
./configure
2828
make
2929
sudo make install # if needed to install globally
3030
31+
- name: autoreconf
32+
run: autoreconf -i -f
33+
3134
- name: configure
3235
run: ./configure
3336

0 commit comments

Comments
 (0)