Skip to content

Commit

Permalink
👷 Change paths to match main
Browse files Browse the repository at this point in the history
  • Loading branch information
satmatthills committed Nov 26, 2024
1 parent 0c20971 commit b2b8afb
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,24 @@ jobs:
- name: Install PlatformIO Core
run: pip install --upgrade platformio

- name: Build ble-advertising-template
run: cd ./ble-advertising-template && pio run --environment ESP32-S3
- name: Build ble-advertising
run: cd ./ble-advertising && pio run --environment ESP32-S3

- name: Simulate and test ble-advertising-template with Wokwi
- name: Simulate and test ble-advertising with Wokwi
uses: wokwi/wokwi-ci-action@v1
with:
token: ${{ secrets.WOKWI_CLI_TOKEN }}
path: ./ble-advertising-template/ # directory with wokwi.toml, relative to repo's root
path: ./ble-advertising/ # directory with wokwi.toml, relative to repo's root
timeout: 30000
expect_text: 'Puara Start Done!'

- name: Build libmapper-osc-template
run: cd ./libmapper-osc-template && pio run --environment ESP32-S3
- name: Build libmapper-osc
run: cd ./libmapper-osc && pio run --environment ESP32-S3

- name: Simulate and test libmapper-osc-template with Wokwi
- name: Simulate and test libmapper-osc with Wokwi
uses: wokwi/wokwi-ci-action@v1
with:
token: ${{ secrets.WOKWI_CLI_TOKEN }}
path: ./libmapper-osc-template/ # directory with wokwi.toml, relative to repo's root
path: ./libmapper-osc/ # directory with wokwi.toml, relative to repo's root
timeout: 30000
expect_text: 'Puara Start Done!'
6 changes: 6 additions & 0 deletions ble-advertising/wokwi.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Wokwi Configuration File
# Reference: https://docs.wokwi.com/vscode/project-config
[wokwi]
version = 1
firmware = '.pio/build/ESP32-S3/firmware.bin'
elf = '.pio/build/ESP32-S3/firmware.elf'
6 changes: 6 additions & 0 deletions libmapper-osc/wokwi.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Wokwi Configuration File
# Reference: https://docs.wokwi.com/vscode/project-config
[wokwi]
version = 1
firmware = '.pio/build/ESP32-S3/firmware.bin'
elf = '.pio/build/ESP32-S3/firmware.elf'

0 comments on commit b2b8afb

Please sign in to comment.