Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge
  • Loading branch information
p0lyg0n1 committed Jul 8, 2024
2 parents e4a98de + 741053b commit f60ee7d
Show file tree
Hide file tree
Showing 37 changed files with 1,289 additions and 3,549 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/compiling_examples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: compiling examples

on:
push:
paths:
- 'hardware/arduino/zunoG2/cores/**'
- 'hardware/arduino/zunoG2/ctt/**'
- 'hardware/arduino/zunoG2/device/**'
- 'hardware/arduino/zunoG2/libraries/**'
- 'toolchain/linux64/**'
- 'script/compiling_examples.py'
- '.github/workflows/compiling_examples.yml'

jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5

steps:
- uses: actions/checkout@v4

- name: Download libclang and arm gcc tools
run: |
wget "http://z-uno.z-wave.me/files/z-uno2/tc//libclang_11_0_1-linux64.tar.gz"
wget "http://z-uno.z-wave.me/files/z-uno2/tc//arm-none-eabi-gcc-10_3_1-linux64.tar.gz"
- name: Extract tools
run: |
mkdir tmp
tar -xvzf ./libclang_11_0_1-linux64.tar.gz -C ./tmp
tar -xvzf ./arm-none-eabi-gcc-10_3_1-linux64.tar.gz -C ./tmp
unzip ./toolchain/linux64/zme_make_linux64.zip -d ./tmp
- name: Checks compiling examples
run: |
python3 script/compiling_examples.py ./tmp "10.3.1"
Loading

0 comments on commit f60ee7d

Please sign in to comment.