Skip to content

Commit ea95112

Browse files
committed
.
1 parent d7e57e5 commit ea95112

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,13 @@ jobs:
4747
${{github.workspace}}/bin/arduino-cli core update-index
4848
${{github.workspace}}/bin/arduino-cli core install esp32:esp32
4949
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+
5058
- name: Build with Arduino CLI
5159
run: ${{github.workspace}}/bin/arduino-cli compile --fqbn esp32:esp32:nodemcu-32s ${{github.workspace}}/examples/Aes

0 commit comments

Comments
 (0)