hirotakaster / CoAP-simple-library

Other
111 stars 48 forks source link

Use GitHub actions to test CoAP-simple-library on multiple platforms #23

Closed jackjansen closed 3 years ago

jackjansen commented 3 years ago

Hi, would you be interested in using the GitHub Actions CI/CD to automatically test (compilation only) CoAP-simple-library?

I'm investigating it at the moment for my own projects, to do builds with both PlatformIO and Arduino, for multiple architectures.

If you're interested I could experiment with a fork of CoAP-simple-library in stead of with the Blink project (as I'm doing now) and I could give you a pull request when/if I get something working...

hirotakaster commented 3 years ago

@jackjansen Hi, It's nice idea. I think this library support target is Arduino/ESP8266/ESP32 with Arduino IDE/PIO. And I will try Github Actions CI/CD by own.

jackjansen commented 3 years ago

Wonderful! In case you're interested: my playground is at https://github.com/jackjansen/cicdtest which builds the blink app for 3 platforms using both Arduino and PlatformIO.

hirotakaster commented 3 years ago

I add arduno-cli(avr/esp32) workflow. I will add pio workflow later.

jackjansen commented 3 years ago

You're using completely different arduino-cli setup than I was experimenting with. Yours looks a lot more promising for libraries (the ArminJo/arduino-test-compile I was using seems more geared towards programs than libraries with examples. Thanks!

hirotakaster commented 3 years ago

@jackjansen Ah, I find your workflow now, your pattern LGTM. I will use your workflow.

hirotakaster commented 3 years ago

Thank you!! everything works well.

hirotakaster commented 3 years ago

@jackjansen thank you for your repo.