Skip to content

Commit 49dc61c

Browse files
committed
Update arduino-cli to 0.29.0
1 parent 7c8e164 commit 49dc61c

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Diff for: CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2424
- Change 266 files from CRLF to LF.
2525
- Run tests on push as well as on a pull request so developers can see impact
2626
- `ArduinoBackend` now exposes `config_file_path` instead of `config_dir` so that we can be explicit about [strange behavior in `arduino-cli` that isn't going to change anytime soon](https://github.com/arduino/arduino-cli/issues/753)
27+
- Use `arduino-cli` version `0.29.0` as the backend
2728

2829
### Deprecated
2930

Diff for: lib/arduino_ci/arduino_backend.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def compile_sketch(path, boardname)
200200
@last_msg = "Can't compile Sketch at nonexistent path '#{path}'!"
201201
return false
202202
end
203-
ret = run_and_capture("compile", "--fqbn", boardname, "--warnings", "all", "--dry-run", path.to_s)
203+
ret = run_and_capture("compile", "--fqbn", boardname, "--warnings", "all", path.to_s)
204204
@last_msg = ret[:out]
205205
ret[:success]
206206
end

Diff for: lib/arduino_ci/arduino_installation.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class ArduinoInstallationError < StandardError; end
1212
# Manage the OS-specific install location of Arduino
1313
class ArduinoInstallation
1414

15-
DESIRED_ARDUINO_CLI_VERSION = "0.13.0".freeze
15+
DESIRED_ARDUINO_CLI_VERSION = "0.29.0".freeze
1616

1717
class << self
1818

Diff for: spec/arduino_installation_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
context "constants" do
77
it "Exposes desired backend version" do
8-
expect(ArduinoCI::ArduinoInstallation::DESIRED_ARDUINO_CLI_VERSION).to eq("0.13.0")
8+
expect(ArduinoCI::ArduinoInstallation::DESIRED_ARDUINO_CLI_VERSION).to eq("0.29.0")
99
end
1010
end
1111

0 commit comments

Comments
 (0)