Update firmware.yml

Thomas Ballmann 3 years ago committed by GitHub
parent cba2aecb12
commit b4ff7675a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -24,36 +24,21 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# - name: Cache pip
# uses: actions/cache@v2
# with:
# path: ~/.cache/pip
# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
# restore-keys: |
# ${{ runner.os }}-pip-
# - name: Cache PlatformIO
# uses: actions/cache@v2
# with:
# path: ~/.platformio
# key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
#
- name: Set up Python
uses: actions/setup-python@v1
- name: Build on PlatformIO
run: bash ci/build-platformio.sh
# - name: Set up Python
# uses: actions/setup-python@v1
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: clean
uses: JesseTG/rm@v1.0.2
with:
path: ~/.platformio
# - name: Install PlatformIO
# run: |
# python -m pip install --upgrade pip
# pip install --upgrade platformio
# - name: Install library dependencies
# run: pio lib -g install 1
- name: Run PlatformIO
# run: platformio run
run: pio run -e esp32
# - name: Run PlatformIO
# run: pio run -e esp32

Loading…
Cancel
Save