From 84946ea9d0ff32190f392c253f7059cebb962751 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Sat, 11 Jan 2020 02:35:08 +0200 Subject: [PATCH] Add build-particle --- .github/workflows/tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 55c9193..e419009 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -251,6 +251,23 @@ jobs: run: | cd platforms/arduino pio run -e maix + + build-particle: + runs-on: ubuntu-latest + timeout-minutes: 10 + + steps: + - uses: actions/checkout@v1 + - name: Set up Particle CLI + run: npm install -g particle-cli + - name: Log in + env: + PARTICLE_TOKEN: ${{ secrets.PARTICLE_TOKEN }} + run: particle login --token $PARTICLE_TOKEN + - name: Build Photon + run: | + cd platforms/particle + particle compile --followSymlinks photon build-esp32-idf: runs-on: ubuntu-latest