Skip to content

Commit

Permalink
add RP2040 to build-CI (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobTillaart committed Nov 8, 2022
1 parent d36c4c9 commit b265d39
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 9 deletions.
23 changes: 22 additions & 1 deletion .arduino-ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
platforms:
rpipico:
board: rp2040:rp2040:rpipico
package: rp2040:rp2040
gcc:
features:
defines:
- ARDUINO_ARCH_RP2040
warnings:
flags:

packages:
rp2040:rp2040:
url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json

compile:
# Choosing to run compilation tests on 2 different Arduino platforms
platforms:
Expand All @@ -8,4 +23,10 @@ compile:
- m4
- esp32
# - esp8266
# - mega2560
# - mega2560
- rpipico

# Declaring Dependent Arduino Libraries (to be installed via the Arduino Library Manager)
libraries:
- "printHelpers"

2 changes: 1 addition & 1 deletion GST.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// FILE: GST.cpp
// VERSION: 0.1.1
// VERSION: 0.1.2
// PURPOSE: Arduino library for Gold Standard Test metrics
// URL: https://github.com/RobTillaart/GST
// https://en.wikipedia.org/wiki/Sensitivity_and_specificity
Expand Down
4 changes: 2 additions & 2 deletions GST.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#pragma once
//
// FILE: GST.h
// VERSION: 0.1.1
// VERSION: 0.1.2
// PURPOSE: Arduino library for Gold Standard Test metrics
// URL: https://github.com/RobTillaart/GST
// https://en.wikipedia.org/wiki/Sensitivity_and_specificity
// https://en.wikipedia.org/wiki/Confusion_matrix
//
// formula's based upon Wikipedia.

#define GST_LIB_VERSION (F("0.1.1"))
#define GST_LIB_VERSION (F("0.1.2"))


#include "Arduino.h"
Expand Down
9 changes: 6 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
# GST Changelog


## 0.1.1 2022-06-08
## [0.1.2] - 2022-11-08
- add RP2040 to build CI
- update changelog.md


## [0.1.1] - 2022-06-08
- add **addTruePositive()** etc functions.
- add defaults for **setTruePositive(value = 0)** etc functions
- add long descriptive names for the short functions.
Expand All @@ -12,8 +16,7 @@
- split off GST.cpp file, prevent - https://github.com/RobTillaart/CRC/issues/21


## 0.1.0 2022-02-25

## [0.1.0] - 2022-02-25
- initial version
-

Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/GST.git"
},
"version": "0.1.1",
"version": "0.1.2",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=GST
version=0.1.1
version=0.1.2
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for Golden Standard Test, confusion matrix.
Expand Down

0 comments on commit b265d39

Please sign in to comment.