CI/CD: moved to ESP-IDF 5.3 #95
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pico SDK builds | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
picosdk_info: | |
runs-on: ubuntu-latest | |
container: ghcr.io/pstolarz/picosdk-ci | |
steps: | |
- name: Pico SDK recent versions info | |
run: | | |
cd /pico-sdk | |
git fetch || true | |
git tag | sort | awk "/$(git describe --tags)/ {f=1} f==1 {print}" | |
picosdk_build: | |
runs-on: ubuntu-latest | |
container: ghcr.io/pstolarz/picosdk-ci | |
strategy: | |
matrix: | |
example: | |
- DallasTemperature | |
env: | |
BUILD_FLAGS: "\ | |
-DCONFIG_PWR_CTRL_ENABLED \ | |
-DCONFIG_OVERDRIVE_ENABLED \ | |
-DCONFIG_CRC16_ENABLED \ | |
-DCONFIG_ITERATION_RETRIES=1" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
repo_dir=$(pwd) | |
rm -rf /tmp/picosdk-build && mkdir /tmp/picosdk-build && cd /tmp/picosdk-build | |
ln -s ${repo_dir} OneWireNg | |
ln -s ${repo_dir}/examples/pico-sdk/${{ matrix.example }}/${{ matrix.example }}.cpp ${{ matrix.example }}.cpp | |
ln -s ${repo_dir}/examples/pico-sdk/${{ matrix.example }}/CMakeLists.txt CMakeLists.txt | |
ln -s ${repo_dir}/examples/pico-sdk/${{ matrix.example }}/pico_sdk_import.cmake pico_sdk_import.cmake | |
mkdir build && cd build | |
sudo bash -c "PICO_SDK_PATH=/pico-sdk CXXFLAGS=\"${BUILD_FLAGS}\" CFLAGS=\"${BUILD_FLAGS}\" cmake .. && make" |