File tree 4 files changed +8
-9
lines changed
4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 25
25
steps :
26
26
- uses : actions/checkout@v1
27
27
- name : Install dependencies
28
- 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
29
- - name : Install Python Wheel
30
- run : pip install wheel
28
+ run : bash ./tools/prepare-ci.sh
31
29
- name : Build
32
30
env :
33
31
GITHUB_TOKEN : ${{ secrets.PUSH_TOKEN }}
Original file line number Diff line number Diff line change 14
14
steps :
15
15
- uses : actions/checkout@v1
16
16
- name : Install dependencies
17
- 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
18
- - name : Install Python Wheel
19
- run : pip install wheel
17
+ run : bash ./tools/prepare-ci.sh
20
18
- name : Build Arduino Libs
21
19
run : bash ./build.sh
22
20
- name : Upload archive
Original file line number Diff line number Diff line change 9
9
steps :
10
10
- uses : actions/checkout@v1
11
11
- name : Install dependencies
12
- 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
13
- - name : Install Python Wheel
14
- run : pip install wheel
12
+ run : bash ./tools/prepare-ci.sh
15
13
- name : Handle Event
16
14
env :
17
15
GITHUB_TOKEN : ${{ secrets.PUSH_TOKEN }}
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ sudo apt-get install -y git wget curl libssl-dev libncurses-dev flex bison gperf python python-setuptools python-cryptography python-pyparsing python-pyelftools cmake ninja-build ccache
4
+ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python get-pip.py && \
5
+ pip3 install pyserial click future wheel
You can’t perform that action at this time.
0 commit comments