Skip to content

Commit

Permalink
fixes gitlab ci... hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoquesada committed Jan 1, 2025
1 parent 44bb832 commit 17b1d52
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ build-debian-linux-clang:
- apt update
- apt -y install tzdata
- apt -y install clang
- apt -y install make pkg-config libusb-1.0-0-dev
- apt -y install make cmake pkg-config libusb-1.0-0-dev
script:
- cd examples/posix && mkdir build && cd build && cmake .. && CC=clang make -j

Expand All @@ -33,6 +33,13 @@ build-esp-idf-5.3:
variables:
GIT_SUBMODULE_STRATEGY: recursive
stage: build
before_script:
- pushd .
- cd external/btstack
- git apply ../patches/*.patch
- cd port/esp32
- IDF_PATH=../../../../src/ ./integrate_btstack.py
- popd
script:
- cd examples/esp32
- idf.py build

0 comments on commit 17b1d52

Please sign in to comment.