diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3d30661c..f485bf6e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,8 +20,6 @@ jobs: west init -m https://github.com/zephyrproject-rtos/gsoc-2022-arduino-core.git west update git clone https://github.com/arduino/ArduinoCore-API.git ArduinoCore-API - sed '/WCharacter.h/ s/./\/\/ &/' ArduinoCore-API/api/ArduinoAPI.h > ArduinoCore-API/api/tmpArduinoAPI.h - mv ArduinoCore-API/api/tmpArduinoAPI.h ArduinoCore-API/api/ArduinoAPI.h cp -r ArduinoCore-API/api modules/lib/Arduino-Zephyr-API/cores/arduino/. - name: Build fade @@ -34,6 +32,11 @@ jobs: run: | west build -p -b arduino_nano_33_ble_sense samples/i2cdemo + - name: Build adc + working-directory: Arduino-Zephyr-API + run: | + west build -p -b beagleconnect_freedom samples/analog_input + - name: Archive firmware uses: actions/upload-artifact@v2 with: diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml index c3cba500..41e2f69b 100644 --- a/.github/workflows/checkpatch.yml +++ b/.github/workflows/checkpatch.yml @@ -6,9 +6,9 @@ name: checkpatch review on: # Triggers the workflow on push or pull request events but only for the "main" branch push: - branches: [ "main" ] + branches: [ "main", "next" ] pull_request: - branches: [ "main" ] + branches: [ "main", "next" ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: