Skip to content

Commit

Permalink
.github/workflows/c-cpp.yml simplify submodule checkout
Browse files Browse the repository at this point in the history
Write the submodule checkout as
git submodule update --init --recursive
  • Loading branch information
hor63 authored Mar 26, 2024
1 parent a399575 commit fe1f3fd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,12 @@ jobs:
- name: Ubuntu packages
run: sudo apt-get install autoconf-archive liblog4cxx-dev libi2c-dev
- name: Pull submodules
run: git submodule init ;
git submodule update
run: git submodule update --init --recursive
- name: autoreconf
run: autoreconf -iv
- name: configure
run: mkdir build; cd build; ../configure
- name: make
- name: make -j6
run: cd build; make V=1
- name: make check
run: cd build; make V=1 check

0 comments on commit fe1f3fd

Please sign in to comment.