File tree Expand file tree Collapse file tree 2 files changed +0
-96
lines changed Expand file tree Collapse file tree 2 files changed +0
-96
lines changed Original file line number Diff line number Diff line change 1
- ---
2
- kind : pipeline
3
- name : test
4
-
5
- steps :
6
- - name : lint
7
- image : arduino/arduino-cli:drone-1.1.0
8
- commands :
9
- # Check if the Go code is properly formatted and run the linter
10
- - task check
11
- # Ensure protobufs compile without errors
12
- - task protoc
13
-
14
- - name : build
15
- image : arduino/arduino-cli:drone-1.1.0
16
- commands :
17
- - task build
18
-
19
- - name : test
20
- image : arduino/arduino-cli:drone-1.1.0
21
- commands :
22
- - task test-unit
23
- - task test-legacy
24
-
25
- - name : integration
26
- image : arduino/arduino-cli:drone-1.1.0
27
- commands :
28
- - pip install -r test/requirements.txt
29
- - task test-integration
30
-
31
- - name : coverage
32
- # Contrary to other CI platforms, uploading reports to Codecov requires Drone to provide a token.
33
- # To avoid exposing the Codecov token to external PRs, we only upload coverage when we merge on
34
- # `master`.
35
- image : arduino/arduino-cli:drone-1.1.0
36
- environment :
37
- CODECOV_TOKEN :
38
- from_secret : codecov_token
39
- commands :
40
- - codecov -cF unit -f coverage_unit.txt -t $CODECOV_TOKEN
41
- - codecov -cF integ -f coverage_integ.txt -t $CODECOV_TOKEN
42
- when :
43
- branch :
44
- - master
45
- event :
46
- - push
47
-
48
1
---
49
2
kind : pipeline
50
3
name : release
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments