-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (41 loc) · 1.17 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Build Examples
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
run: |
pip install -U https://github.com/platformio/platformio/archive/develop.zip
pip install wget requests
- name: Caching Nuclei Tools
uses: actions/cache@v3
with:
path: prebuilt_dlcache
key: build
- name: Install and Setup Nuclei Tools
run: |
python3 -u .github/prepare_tools.py --install
- name: Upload cached packages
uses: actions/upload-artifact@v3
with:
name: prebuilt_caching_${{ matrix.os }}
path: |
prebuilt_dlcache
- name: Setup PIO Packages
run: |
python3 -u .github/prepare_tools.py --pio
- name: Build examples
run: |
python3 -u .github/build_examples.py