mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 05:31:25 +00:00
test adding artifacts
This commit is contained in:
parent
68349f88b0
commit
49c6256270
24
.github/workflows/main.yml
vendored
24
.github/workflows/main.yml
vendored
@ -54,18 +54,28 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
pio upgrade
|
pio upgrade
|
||||||
|
|
||||||
- name: Build for tbeam
|
# We now run integration test before other build steps (to quickly see runtime failures)
|
||||||
run: platformio run -e tbeam
|
|
||||||
- name: Build for heltec
|
|
||||||
run: platformio run -e heltec
|
|
||||||
- name: Build for wisblock RAK4631
|
|
||||||
run: platformio run -e rak4631
|
|
||||||
- name: Build for native
|
- name: Build for native
|
||||||
run: platformio run -e native
|
run: platformio run -e native
|
||||||
- name: Integration test
|
- name: Integration test
|
||||||
run: |
|
run: |
|
||||||
.pio/build/native/program &
|
.pio/build/native/program &
|
||||||
sleep 30 # 5 seconds was not enough
|
sleep 20 # 5 seconds was not enough
|
||||||
echo "Simulator started, launching python test..."
|
echo "Simulator started, launching python test..."
|
||||||
python3 -c 'from meshtastic.test import testSimulator; testSimulator()'
|
python3 -c 'from meshtastic.test import testSimulator; testSimulator()'
|
||||||
|
|
||||||
|
# - name: Build for tbeam
|
||||||
|
# run: platformio run -e tbeam
|
||||||
|
# - name: Build for heltec
|
||||||
|
# run: platformio run -e heltec
|
||||||
|
# - name: Build for wisblock RAK4631
|
||||||
|
# run: platformio run -e rak4631
|
||||||
|
|
||||||
|
- name: Build everything
|
||||||
|
run: bin/build-all.sh
|
||||||
|
|
||||||
|
- name: Store release zip as an artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: firmware
|
||||||
|
path: release/archive/firmware-*.zip
|
||||||
|
@ -14,10 +14,7 @@
|
|||||||
</component>
|
</component>
|
||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="58922733-b05b-4b90-9655-b9b18914977a" name="Default Changelist" comment="">
|
<list default="true" id="58922733-b05b-4b90-9655-b9b18914977a" name="Default Changelist" comment="">
|
||||||
<change beforePath="$PROJECT_DIR$/.github/workflows/main.yml" beforeDir="false" afterPath="$PROJECT_DIR$/.github/workflows/main.yml" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/src/mesh/mesh-pb-constants.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/src/mesh/mesh-pb-constants.cpp" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/src/mqtt/MQTT.h" beforeDir="false" afterPath="$PROJECT_DIR$/src/mqtt/MQTT.h" afterDir="false" />
|
|
||||||
</list>
|
</list>
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
@ -102,7 +99,7 @@
|
|||||||
<workItem from="1617279002260" duration="1626000" />
|
<workItem from="1617279002260" duration="1626000" />
|
||||||
<workItem from="1617425689081" duration="1896000" />
|
<workItem from="1617425689081" duration="1896000" />
|
||||||
<workItem from="1617437366919" duration="1182000" />
|
<workItem from="1617437366919" duration="1182000" />
|
||||||
<workItem from="1618544034975" duration="586000" />
|
<workItem from="1618544034975" duration="1185000" />
|
||||||
</task>
|
</task>
|
||||||
<servers />
|
<servers />
|
||||||
</component>
|
</component>
|
||||||
|
@ -4,8 +4,8 @@ set -e
|
|||||||
|
|
||||||
VERSION=`bin/buildinfo.py`
|
VERSION=`bin/buildinfo.py`
|
||||||
|
|
||||||
BOARDS_ESP32="tlora-v2 tlora-v1 tlora_v1_3 tlora-v2-1-1.6 tbeam heltec tbeam0.7"
|
#BOARDS_ESP32="tlora-v2 tlora-v1 tlora_v1_3 tlora-v2-1-1.6 tbeam heltec tbeam0.7"
|
||||||
#BOARDS_ESP32=tbeam
|
BOARDS_ESP32=tbeam
|
||||||
|
|
||||||
# FIXME note nrf52840dk build is for some reason only generating a BIN file but not a HEX file nrf52840dk-geeksville is fine
|
# FIXME note nrf52840dk build is for some reason only generating a BIN file but not a HEX file nrf52840dk-geeksville is fine
|
||||||
BOARDS_NRF52="rak4631"
|
BOARDS_NRF52="rak4631"
|
||||||
|
Loading…
Reference in New Issue
Block a user