Skip to content

Commit

Permalink
#668: Clone submodules in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ataffanel committed Jan 4, 2021
1 parent ab8e35c commit e6a14fa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,19 @@ on:
jobs:
basic:
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
uses: actions/checkout@v2
with:
submodules: true

- name: build
run: docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build PLATFORM=cf2 UNIT_TEST_STYLE=min

examples:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
Expand All @@ -36,5 +41,8 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@v2
with:
submodules: true

- name: build
run: docker run --rm -v ${PWD}:/module bitcraze/builder bash -c "cd ${EXAMPLE}; make -j$(nproc)"

0 comments on commit e6a14fa

Please sign in to comment.