mirror of
https://github.com/EyeTrackVR/OpenIris.git
synced 2025-11-04 15:39:42 +08:00
update
- try to fix pathing error
This commit is contained in:
parent
42ac9aa2ba
commit
f9022e1a38
32
.github/workflows/build_release_bins.yml
vendored
32
.github/workflows/build_release_bins.yml
vendored
@ -2,7 +2,7 @@ name: Build and Release the OpenIris bin files
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "mdns-autodiscovery"
|
||||
- "feature/mdns-autodiscovery"
|
||||
- "master"
|
||||
pull_request:
|
||||
branches:
|
||||
@ -13,21 +13,21 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
targets: [esp32AITinker_release,
|
||||
esp32CAM_release,
|
||||
esp_eye_release,
|
||||
esp32M5Stack_release,
|
||||
wrover_release,
|
||||
esp32CAM,
|
||||
esp32AITinker,
|
||||
esp32M5Stack,
|
||||
esp_eye,
|
||||
wrover,
|
||||
esp32CAM_OTA,
|
||||
esp32AITinker_OTA,
|
||||
esp32M5Stack_OTA,
|
||||
esp_eye_OTA,
|
||||
wrover_OTA,
|
||||
targets: [esp32Cam_release,
|
||||
# esp32AITinker_release,
|
||||
# esp_eye_release,
|
||||
# esp32M5Stack_release,
|
||||
# wrover_release,
|
||||
# esp32Cam,
|
||||
# esp32AITinker,
|
||||
# esp32M5Stack,
|
||||
# esp_eye,
|
||||
# wrover,
|
||||
# esp32Cam_OTA,
|
||||
# esp32AITinker_OTA,
|
||||
# esp32M5Stack_OTA,
|
||||
# esp_eye_OTA,
|
||||
# wrover_OTA,
|
||||
]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
@ -257,11 +257,10 @@ monitor_filters =
|
||||
|
||||
;board_build.partitions = ${common.board_build.partitions} ; uncomment this to use the huge_app partition table, does not support OTA and only 1MB of SPIFFS
|
||||
board_build.partitions = min_spiffs.csv ; uncomment this to use the min_spiffs partition table, supports OTA and 1MB of SPIFFS
|
||||
|
||||
build_flags =
|
||||
${ESP_GITHUB_OTA.build_flags}
|
||||
!python tools\autoversioning.py ; add build version to build as preprocessor defines
|
||||
!python tools\git_rev.py ; add git revision to build as preprocessor defines
|
||||
!python tools/autoversioning.py ; add build version to build as preprocessor defines
|
||||
!python tools/git_rev.py ; add git revision to build as preprocessor defines
|
||||
-DOTA_SERVER_PORT=${wifi.OTAServerPort} ; Set the OTA server
|
||||
-DENABLE_ADHOC=${wifi.enableADHOC}
|
||||
-DADHOC_CHANNEL=${wifi.adhocChannel}
|
||||
|
||||
@ -13,7 +13,7 @@ with open(FILENAME_BUILDNO, 'w+') as f:
|
||||
|
||||
# crate a file with the version number
|
||||
with open(FILENAME_VERSION, 'w+') as f:
|
||||
f.write('"{0}"'.format(version+str(build_no)))
|
||||
f.write('{0}'.format(version+str(build_no)))
|
||||
|
||||
#print("-DVERSION=\"%s\"" % version+str(build_no))
|
||||
print("-DVERSION={0}".format(version+str(build_no)))
|
||||
|
||||
@ -1 +1 @@
|
||||
628
|
||||
638
|
||||
Loading…
Reference in New Issue
Block a user