Skip to content

Commit d73f6d7

Browse files
authored
Add Github CI script
1 parent 381ced5 commit d73f6d7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: ESP32 Arduino Libs CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- release/*
8+
pull_request:
9+
10+
jobs:
11+
12+
build-libs:
13+
name: Build Arduino Libs
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v1
17+
- name: Install dependencies
18+
run: sudo apt-get install git wget curl libssl-dev libncurses-dev flex bison gperf python python-pip python-setuptools python-serial python-click python-cryptography python-future python-pyparsing python-pyelftools cmake ninja-build ccache
19+
- name: Build Arduino Libs
20+
env:
21+
TRAVIS_BUILD_DIR: ${{ github.workspace }}
22+
run: bash $TRAVIS_BUILD_DIR/build.sh

0 commit comments

Comments
 (0)