We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7e57e5 commit ea95112Copy full SHA for ea95112
.github/workflows/ci.yml
@@ -47,5 +47,13 @@ jobs:
47
${{github.workspace}}/bin/arduino-cli core update-index
48
${{github.workspace}}/bin/arduino-cli core install esp32:esp32
49
50
+ - name: Copy Repository to Arduino Library Path
51
+ run: |
52
+ ARDUINO_LIB_PATH="${HOME}/Arduino/libraries"
53
+ REPO_PATH="${{ github.workspace }}"
54
+
55
+ mkdir -p "${ARDUINO_LIB_PATH}"
56
+ cp -R "${REPO_PATH}" "${ARDUINO_LIB_PATH}/"
57
58
- name: Build with Arduino CLI
59
run: ${{github.workspace}}/bin/arduino-cli compile --fqbn esp32:esp32:nodemcu-32s ${{github.workspace}}/examples/Aes
0 commit comments