From cab9975fba898572e23a0fc8d2dad46a5cdf6631 Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Thu, 24 Oct 2019 15:47:18 +0200 Subject: [PATCH] Disable ubuntu Builds keep failing, looks like a bug in github actions ubuntu image/azure --- .github/workflows/build.yml | 62 ++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 32 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 72e5bbb..3d86c08 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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