Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
WonITKorea authored Dec 13, 2023
1 parent 2b41b58 commit cb188e4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# The matrix will produce one job for each configuration
# parameter of type `arduino-platform`, in this case a
# total of 2.
arduino-platform: ["arduino:mbed_nano"]
arduino-platform: ["arduino:mbed_nano, esp32:esp32"]
# This is usually optional but we need to statically define the
# FQBN of the boards we want to test for each platform. In the
# future the CLI might automatically detect and download the core
Expand All @@ -28,6 +28,8 @@ jobs:
include:
- arduino-platform: "arduino:mbed_nano"
fqbn: "arduino:mbed_nano:nanorp2040connect"
arduino-platform: "esp32:esp32"
fqbn: "esp32:esp32:esp32s3:JTAGAdapter=default,PSRAM=enabled,FlashMode=qio,FlashSize=4M,LoopCore=1,EventsCore=1,USBMode=hwcdc,CDCOnBoot=default,MSCOnBoot=default,DFUOnBoot=default,UploadMode=default,PartitionScheme=huge_app,CPUFreq=240,UploadSpeed=921600,DebugLevel=none,EraseFlash=none"


# This is the platform GitHub will use to run our workflow, we
Expand All @@ -54,5 +56,7 @@ jobs:
# Finally, we compile the sketch, using the FQBN that was set
# in the build matrix.
- name: Compile Sketch
- name: Compile MainBoard Sketch
run: arduino-cli compile --fqbn ${{ matrix.fqbn }} ./MainBoard_Pico/MainBoard_Pico.ino
- name: Compile Display Sketch
run: arduino-cli compile --fqbn ${{ matrix.fqbn }} ./Display/Display.ino

0 comments on commit cb188e4

Please sign in to comment.