arduino_ci 1.6.1 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/exe/arduino_ci.rb +6 -5
- data/lib/arduino_ci/version.rb +1 -1
- metadata +1 -1
checksums.yaml CHANGED
| @@ -1,7 +1,7 @@ | |
| 1 1 | --- |
| 2 2 | SHA256: |
| 3 | - metadata.gz: |
| 4 | - data.tar.gz: |
| 3 | + metadata.gz: 06b06a608bb5c276ab675b72fac4b0cc42a0a7a778ce377e2e56f4d3a2d31e54 |
| 4 | + data.tar.gz: 34a6f4e135205b4c86e5fe7419a32ec90826d6ae9dcdb7574db90f359defd964 |
| 5 5 | SHA512: |
| 6 | - metadata.gz: |
| 7 | - data.tar.gz: |
| 6 | + metadata.gz: 5e425833e36f40ad70e219fd7d2696ad75999f80fa8a39a081a930e351669e91acf866733166603066a0e33e70e39f8a4a1a8677330b12b06a8d3e82121d216b |
| 7 | + data.tar.gz: c50bb2733cb5b40aae5e0580316a8a73fcdb2fa6175da0bdaf9b098cf01f5f08373b043d8d08bcea600da47026e9d2efc3a69db5e2aa4a0920b06c3599d21073 |
data/README.md CHANGED
| @@ -1,7 +1,7 @@ | |
| 1 1 | |
| 2 2 | # ArduinoCI Ruby gem (`arduino_ci`) |
| 3 3 | [](https://rubygems.org/gems/arduino_ci) |
| 4 | - [](http://www.rubydoc.info/gems/arduino_ci/1.6. |
| 4 | + [](http://www.rubydoc.info/gems/arduino_ci/1.6.2) |
| 5 5 | [](https://gitter.im/Arduino-CI/arduino_ci?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) |
| 6 6 | [](https://github.com/marketplace/actions/arduino_ci) |
| 7 7 | |
data/exe/arduino_ci.rb CHANGED
| @@ -351,11 +351,6 @@ def perform_bootstrap | |
| 351 351 | end |
| 352 352 | end |
| 353 353 | |
| 354 | - install_arduino_library_dependencies( |
| 355 | - cpp_library.arduino_library_dependencies, |
| 356 | - "<#{ArduinoCI::CppLibrary::LIBRARY_PROPERTIES_FILE}>" |
| 357 | - ) |
| 358 | - |
| 359 354 | # return all objects needed by other steps |
| 360 355 | { |
| 361 356 | backend: backend, |
| @@ -604,6 +599,12 @@ end | |
| 604 599 | |
| 605 600 | strap = perform_bootstrap |
| 606 601 | @backend = strap[:backend] |
| 602 | + |
| 603 | + install_arduino_library_dependencies( |
| 604 | + strap[:cpp_library].arduino_library_dependencies, |
| 605 | + "<#{ArduinoCI::CppLibrary::LIBRARY_PROPERTIES_FILE}>" |
| 606 | + ) |
| 607 | + |
| 607 608 | perform_unit_tests(strap[:cpp_library], strap[:config]) |
| 608 609 | perform_example_compilation_tests(strap[:cpp_library], strap[:config]) |
| 609 610 | |
data/lib/arduino_ci/version.rb CHANGED