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