Acttion debug
This commit is contained in:
parent
6c26bbeacb
commit
1928dbb749
2
.github/workflows/pio-build.yaml
vendored
2
.github/workflows/pio-build.yaml
vendored
@ -34,6 +34,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install --upgrade platformio
|
pip install --upgrade platformio
|
||||||
|
pwd
|
||||||
|
ls -al
|
||||||
|
|
||||||
- name: Run PlatformIO
|
- name: Run PlatformIO
|
||||||
run: pio run -e gravity-release -e gravity-perf
|
run: pio run -e gravity-release -e gravity-perf
|
||||||
|
@ -8,22 +8,22 @@ target = dir + "/data/"
|
|||||||
print( "Copy html-files from " + source + " -> " + target )
|
print( "Copy html-files from " + source + " -> " + target )
|
||||||
|
|
||||||
file = "about.min.htm"
|
file = "about.min.htm"
|
||||||
#print( "Copy file: " + source + file + "->" + target + file)
|
print( "Copy file: " + source + file + "->" + target + file)
|
||||||
shutil.copyfile( source + file, target + file )
|
shutil.copyfile( source + file, target + file )
|
||||||
file = "calibration.min.htm"
|
file = "calibration.min.htm"
|
||||||
#print( "Copy file: " + source + file + "->" + target + file)
|
print( "Copy file: " + source + file + "->" + target + file)
|
||||||
shutil.copyfile( source + file, target + file )
|
shutil.copyfile( source + file, target + file )
|
||||||
file = "config.min.htm"
|
file = "config.min.htm"
|
||||||
#print( "Copy file: " + source + file + "->" + target + file)
|
print( "Copy file: " + source + file + "->" + target + file)
|
||||||
shutil.copyfile( source + file, target + file )
|
shutil.copyfile( source + file, target + file )
|
||||||
file = "device.min.htm"
|
file = "device.min.htm"
|
||||||
#print( "Copy file: " + source + file + "->" + target + file)
|
print( "Copy file: " + source + file + "->" + target + file)
|
||||||
shutil.copyfile( source + file, target + file )
|
shutil.copyfile( source + file, target + file )
|
||||||
file = "index.min.htm"
|
file = "index.min.htm"
|
||||||
#print( "Copy file: " + source + file + "->" + target + file)
|
print( "Copy file: " + source + file + "->" + target + file)
|
||||||
shutil.copyfile( source + file, target + file )
|
shutil.copyfile( source + file, target + file )
|
||||||
file = "upload.min.htm"
|
file = "upload.min.htm"
|
||||||
#print( "Copy file: " + source + file + "->" + target + file)
|
print( "Copy file: " + source + file + "->" + target + file)
|
||||||
shutil.copyfile( source + file, target + file )
|
shutil.copyfile( source + file, target + file )
|
||||||
|
|
||||||
#print( "Adding custom build step (copy ./heml/*.min.html to ./data/): ")
|
#print( "Adding custom build step (copy ./heml/*.min.html to ./data/): ")
|
||||||
|
Loading…
Reference in New Issue
Block a user