Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hot fix for gitpod and CI (pio core v6.1.8 is faulty) #19044

Merged
merged 2 commits into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/Tasmota_build_devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Install dependencies
run: |
pip install wheel
pip install -U platformio
pip install -U platformio==6.1.7
- name: Run PlatformIO
run: platformio run -e ${{ matrix.variant }}
- name: Upload safeboot firmware artifacts
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Install dependencies
run: |
pip install wheel
pip install -U platformio
pip install -U platformio==6.1.7
- name: Run PlatformIO
run: platformio run -e ${{ matrix.variant }}
- name: Upload firmware artifacts
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
- name: Install dependencies
run: |
pip install wheel
pip install -U platformio
pip install -U platformio==6.1.7
- name: Download safeboot firmwares
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
- name: Install dependencies
run: |
pip install wheel
pip install -U platformio
pip install -U platformio==6.1.7
- name: Download safeboot firmwares
uses: actions/download-artifact@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/Tasmota_build_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Install dependencies
run: |
pip install wheel
pip install -U platformio
pip install -U platformio==6.1.7
- name: Run PlatformIO
run: platformio run -e ${{ matrix.variant }}
- name: Upload safeboot firmware artifacts
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Install dependencies
run: |
pip install wheel
pip install -U platformio
pip install -U platformio==6.1.7
- name: Run PlatformIO
run: platformio run -e ${{ matrix.variant }}
- name: Upload firmware artifacts
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Install dependencies
run: |
pip install wheel
pip install -U platformio
pip install -U platformio==6.1.7
- name: Download safeboot firmwares
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
- name: Install dependencies
run: |
pip install wheel
pip install -U platformio
pip install -U platformio==6.1.7
- name: Download safeboot firmwares
uses: actions/download-artifact@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_all_the_things.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
pip install wheel
#python -m pip install --upgrade pip
pip install -U platformio
pip install -U platformio==6.1.7
#platformio upgrade --dev
#platformio update
- name: Run PlatformIO
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
run: |
pip install wheel
#python -m pip install --upgrade pip
pip install -U platformio
pip install -U platformio==6.1.7
#platformio upgrade --dev
#platformio update
- name: Run PlatformIO
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
run: |
pip install wheel
#python -m pip install --upgrade pip
pip install -U platformio
pip install -U platformio==6.1.7
#platformio upgrade --dev
#platformio update
- name: Run PlatformIO
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
run: |
pip install wheel
#python -m pip install --upgrade pip
pip install -U platformio
pip install -U platformio==6.1.7
#platformio upgrade --dev
#platformio update
- name: Run PlatformIO
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tasks:
- command: pip3 install -U platformio && platformio run -e tasmota
- command: pip3 install -U platformio==6.1.7 && platformio run -e tasmota

image:
file: .gitpod.Dockerfile
Expand Down