We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76bc4a4 commit 1c31d9dCopy full SHA for 1c31d9d
1 file changed
.github/workflows/c-cpp.yml
@@ -15,19 +15,22 @@ jobs:
15
- uses: actions/checkout@v4
16
17
# Clone the dependency repo (replace URL and branch/tag)
18
- - name: Clone dependency library
+ - name: Clone dependency library libosal
19
run: |
20
git clone --depth 1 --branch release/0.1.0 https://github.com/robert-burger/libosal.git deps/libosal
21
22
# Optional: build or install the dependency if needed
23
- - name: Build dependency library
+ - name: Build dependency library libosal
24
25
cd deps/libosal
26
autoreconf -i -f
27
./configure
28
make
29
sudo make install # if needed to install globally
30
31
+ - name: autoreconf
32
+ run: autoreconf -i -f
33
+
34
- name: configure
35
run: ./configure
36
0 commit comments