Skip to content

Commit 5d2a571

Browse files
committed
fix: update VEML dependency, change linter pipeline
1 parent 16c7b1f commit 5d2a571

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,10 @@
7575

7676
No changes
7777

78-
# 1.2.3
78+
# 1.3.0
7979

8080
# Fixes
8181

82-
* Update MCP9808 library name in library.properties dependency field
82+
* Update MCP9808 library name in library.properties dependency field
83+
* Update VEML3328 library name in library.properties dependency field
84+
* Update Jenkins pipeline with new arduino-lint configurations

Jenkinsfilek8s

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
stage('linter') {
5555
steps {
56-
sh 'arduino-lint --compliance strict'
56+
sh 'arduino-lint --library-manager update --compliance strict'
5757
script {
5858
env.DEP_ERROR = getDependencyError()
5959
if (env.DEP_ERROR != '') {
@@ -147,6 +147,5 @@
147147
}
148148

149149
String getDependencyError() {
150-
return sh(script: "! arduino-lint --compliance strict --format json | grep LP048", returnStdout: true)?.trim()
151-
// return sh(script: "! arduino-lint --compliance strict --format json | grep LP048", returnStdout: true)?.trim()
150+
return sh(script: "! arduino-lint --library-manager update --compliance strict --format json | grep LP048", returnStdout: true)?.trim()
152151
}

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name=AVR-IoT-Cellular
2-
version=1.2.3
2+
version=1.3.0
33
author=Microchip Technology Inc. <simen.gangstad@microchip.com>
44
maintainer=Microchip Technology Inc. <simen.gangstad@microchip.com>
55
sentence=Library for the AVR-IoT Cellular Mini Board
66
paragraph=Supports HTTP(S), MQTT(S), Low Power and more. Dependent on AVR-IoT MCP9808, AVR-IoT VEML3328 and DxCore
77
category=Communication
88
url=https://iot.microchip.com/docs
99
architectures=*
10-
depends=AVR-IoT MCP9808, veml3328
10+
depends=AVR-IoT MCP9808, AVR-IoT VEML3328
1111
precompiled=true

0 commit comments

Comments
 (0)