Disable ubuntu

Builds keep failing, looks like a bug in github actions ubuntu image/azure
This commit is contained in:
Otto Winter 2019-10-24 15:47:18 +02:00
parent bce1f4bb4d
commit cab9975fba
No known key found for this signature in database
GPG Key ID: DB66C0BE6013F97E
1 changed files with 30 additions and 32 deletions

View File

@ -58,37 +58,36 @@ jobs:
name: Windows-x86
path: dist/ESPHome-Flasher.exe
build-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Install dependencies
run: |
sudo apt install python-wxgtk3.0 build-essential libgtk-3-dev
- name: Print Versions
run: |
python --version
pip --version
- name: Install requirements
run: |
pip install pathlib2
pip install -r requirements_build.txt
pip install -e .
- name: Run PyInstaller
run: |
python -m PyInstaller.__main__ -F -w -n ESPHome-Flasher -i icon.ico esphomeflasher/__main__.py
- name: See dist directory
run: ls dist
- uses: actions/upload-artifact@master
with:
name: Ubuntu
path: dist
#build-ubuntu:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v1
# - name: Install Python
# uses: actions/setup-python@v1
# with:
# python-version: '3.7'
# - name: Install dependencies
# run: |
# sudo apt install python-wxgtk3.0 build-essential libgtk-3-dev
# - name: Print Versions
# run: |
# python --version
# pip --version
# - name: Install requirements
# run: |
# pip install pathlib2
# pip install -r requirements_build.txt
# pip install -e .
# - name: Run PyInstaller
# run: |
# python -m PyInstaller.__main__ -F -w -n ESPHome-Flasher -i icon.ico esphomeflasher/__main__.py
# - name: See dist directory
# run: ls dist
# - uses: actions/upload-artifact@master
# with:
# name: Ubuntu
# path: dist
build-macos:
@ -100,7 +99,6 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Print Versions
run: |
python --version